{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "c335ac7f",
   "metadata": {},
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "58000d15",
   "metadata": {
    "load": "myst_code_init.py",
    "tags": [
     "remove-cell"
    ]
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Loading pyMOR defaults from file /builds/pymor/pymor/docs/source/pymor_defaults.py\n"
     ]
    }
   ],
   "source": [
    "import warnings\n",
    "\n",
    "import matplotlib as mpl\n",
    "from IPython import get_ipython\n",
    "\n",
    "import pymor.tools.random\n",
    "\n",
    "ip = get_ipython()\n",
    "if ip is not None:\n",
    "    ip.run_line_magic('matplotlib', 'inline')\n",
    "\n",
    "warnings.filterwarnings('ignore', category=UserWarning, module='torch')\n",
    "\n",
    "pymor.tools.random._default_random_state = None\n",
    "\n",
    "mpl.rcParams['figure.facecolor'] = (1.0, 1.0, 1.0, 0.0)\n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "1e7bbcda",
   "metadata": {},
   "source": [
    "# Available MOR methods\n",
    "\n",
    "Here we give an overview over (most of) the available MOR methods implemented in pyMOR.\n",
    "We provide short code snippets that show how to use these methods with pyMOR.\n",
    "For more in-depth explanations we refer to the {doc}`tutorials`.\n",
    "\n",
    "## Data approximation\n",
    "\n",
    "### POD"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "53d9af89",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "16913ed0239242a3967903eb6ccd7238",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# generate some data to approximate\n",
    "from pymor.models.examples import thermal_block_example\n",
    "fom = thermal_block_example(diameter=1/10)\n",
    "U = fom.solution_space.empty()\n",
    "for mu in fom.parameters.space(0.1, 1).sample_randomly(10):\n",
    "    U.append(fom.solve(mu))\n",
    "\n",
    "# return first 3 POD modes and singular values\n",
    "from pymor.algorithms.pod import pod\n",
    "modes, singular_values = pod(U, modes=3)\n",
    "\n",
    "# return modes with singular value larger than 1e-3\n",
    "modes, _  = pod(U, atol=1e-3)\n",
    "\n",
    "# return right-singular vectors\n",
    "modes, _, coeffs = pod(U, return_reduced_coefficients=True)\n",
    "\n",
    "# use slower but more accurate algorithm\n",
    "# (default algorithm is only accurate up to half machine precision)\n",
    "modes, _ = pod(U, method='qr_svd')"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "fd599041",
   "metadata": {},
   "source": [
    "## Parametric MOR\n",
    "\n",
    "Here we consider MOR methods for `Models` that depend on one or more `Parameters`.\n",
    "\n",
    "### Reduced Basis method for parameter-separable, linear, coercive models"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "b50f6c67",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "bea971720151428e81643e2a73a1716b",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "LincombOperator(\n",
      "    (NumpyMatrixOperator(<221x221 sparse, 40 nnz>, solver=ScipySpSolveSolver(check_finite=True), name='boundary_part'),\n",
      "     NumpyMatrixOperator(<221x221 sparse, 231 nnz>, solver=ScipySpSolveSolver(check_finite=True), name='diffusion_0'),\n",
      "     NumpyMatrixOperator(<221x221 sparse, 231 nnz>, solver=ScipySpSolveSolver(check_finite=True), name='diffusion_1'),\n",
      "     NumpyMatrixOperator(<221x221 sparse, 231 nnz>, solver=ScipySpSolveSolver(check_finite=True), name='diffusion_2'),\n",
      "     NumpyMatrixOperator(<221x221 sparse, 231 nnz>, solver=ScipySpSolveSolver(check_finite=True), name='diffusion_3')),\n",
      "    (1.0,\n",
      "     ProjectionParameterFunctional('diffusion', size=4, index=0, name='diffusion_0_0'),\n",
      "     ProjectionParameterFunctional('diffusion', size=4, index=1, name='diffusion_1_0'),\n",
      "     ProjectionParameterFunctional('diffusion', size=4, index=2, name='diffusion_0_1'),\n",
      "     ProjectionParameterFunctional('diffusion', size=4, index=3, name='diffusion_1_1')),\n",
      "    name='ellipticOperator')\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Error estimate: [0.00313244]\n",
      "Actual error: [0.00138708]\n"
     ]
    }
   ],
   "source": [
    "from pymor.models.examples import thermal_block_example\n",
    "fom = thermal_block_example(diameter=1/10)\n",
    "\n",
    "# FOM is parameter separable, i.e., system operator is a\n",
    "# linear combination of non-parametric operators with parametric coefficients\n",
    "print(repr(fom.operator))\n",
    "\n",
    "# instantiate reductor that builds the ROM given some reduced basis;\n",
    "# `product` is inner product w.r.t. which MOR error is estimated;\n",
    "# `coercivity_estimator` needs to return lower bound for the operator's\n",
    "# coercivity constant (w.r.t. given `product`) for the given parameter values\n",
    "from pymor.parameters.functionals import ExpressionParameterFunctional\n",
    "from pymor.reductors.coercive import CoerciveRBReductor\n",
    "reductor = CoerciveRBReductor(\n",
    "    fom,\n",
    "    product=fom.h1_0_semi_product,\n",
    "    coercivity_estimator=ExpressionParameterFunctional('min(diffusion)', fom.parameters)\n",
    ")\n",
    "\n",
    "# note: use SimpleCoerciveRBReductor for faster offline phase but error estimator that\n",
    "# only is accurate up to half machine precision\n",
    "\n",
    "# use weak greedy algorithm to train the model\n",
    "from pymor.algorithms.greedy import rb_greedy\n",
    "greedy_data = rb_greedy(fom, reductor,\n",
    "                        fom.parameters.space(0.1, 1).sample_randomly(1000),  # training parameters\n",
    "                        rtol=1e-2)\n",
    "rom = greedy_data['rom']\n",
    "\n",
    "# estimate and compute state-space MOR error\n",
    "mu = rom.parameters.parse([0.1, 0.9, 0.2, 0.3])\n",
    "u = rom.solve(mu)\n",
    "print(f'Error estimate: {rom.estimate_error(mu)}')\n",
    "print(f'Actual error: {(fom.solve(mu) - reductor.reconstruct(u)).norm(fom.h1_0_semi_product)}')"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "7e0365b6",
   "metadata": {},
   "source": [
    "### POD-Greedy method for parabolic models"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "de48c8c5",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "8af067baac054cc4b80079020962dc27",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "from pymor.models.examples import heat_equation_example\n",
    "fom = heat_equation_example()\n",
    "parameter_space = fom.parameters.space(1, 100)\n",
    "\n",
    "from pymor.parameters.functionals import ExpressionParameterFunctional\n",
    "coercivity_estimator = ExpressionParameterFunctional('1.', fom.parameters)\n",
    "from pymor.reductors.parabolic import ParabolicRBReductor\n",
    "reductor = ParabolicRBReductor(fom, product=fom.h1_0_semi_product, coercivity_estimator=coercivity_estimator)\n",
    "\n",
    "from pymor.algorithms.greedy import rb_greedy\n",
    "training_parameters = parameter_space.sample_uniformly(20)\n",
    "greedy_data = rb_greedy(fom, reductor, training_parameters, max_extensions=10)\n",
    "rom = greedy_data['rom']"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6976bb09",
   "metadata": {},
   "source": [
    "### Estimation of coercivity and continuity constants using the min/max-theta approach"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "b217a6c0",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "c7238442753b45ce8d25d1c8d0b07e6a",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Exact coercivity constant estimate: 0.1\n",
      "Coercivity constant estimate using min-theta approach: 0.1\n",
      "Continuity constant estimate using max-theta approach: 0.9\n"
     ]
    }
   ],
   "source": [
    "from pymor.models.examples import thermal_block_example\n",
    "fom = thermal_block_example(diameter=1/10)\n",
    "\n",
    "from pymor.parameters.functionals import ExpressionParameterFunctional\n",
    "mu = fom.parameters.parse([0.1, 0.9, 0.2, 0.3])\n",
    "exact_coercivity_estimator = ExpressionParameterFunctional('min(diffusion)', fom.parameters)\n",
    "\n",
    "from pymor.parameters.functionals import MaxThetaParameterFunctional, MinThetaParameterFunctional\n",
    "mu_bar = fom.parameters.parse([0.5, 0.5, 0.5, 0.5])\n",
    "coercivity_estimator = MinThetaParameterFunctional(fom.operator.coefficients, mu_bar, alpha_mu_bar=0.5)\n",
    "continuity_estimator = MaxThetaParameterFunctional(fom.operator.coefficients, mu_bar, gamma_mu_bar=0.5)\n",
    "\n",
    "print(f\"Exact coercivity constant estimate: {exact_coercivity_estimator.evaluate(mu)}\")\n",
    "print(f\"Coercivity constant estimate using min-theta approach: {coercivity_estimator.evaluate(mu)}\")\n",
    "print(f\"Continuity constant estimate using max-theta approach: {continuity_estimator.evaluate(mu)}\")"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "ddc37d0f",
   "metadata": {},
   "source": [
    "### Estimation of coercivity constants using the successive constraints method"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "01990371",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "bff9d3da34c74e12924c40a989afc96c",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "/builds/pymor/pymor/src/pymor/algorithms/eigs.py:155: RuntimeWarning: invalid value encountered in divide\n",
      "  ew.imag[np.abs(ew.imag) / np.abs(ew) < imag_tol] = 0\n",
      "/builds/pymor/pymor/src/pymor/algorithms/eigs.py:161: RuntimeWarning: divide by zero encountered in divide\n",
      "  rres = f.norm()[0] * np.abs(evs[-1]) / np.abs(ews)\n",
      "/builds/pymor/pymor/src/pymor/algorithms/eigs.py:161: RuntimeWarning: invalid value encountered in divide\n",
      "  rres = f.norm()[0] * np.abs(evs[-1]) / np.abs(ews)\n"
     ]
    }
   ],
   "source": [
    "from pymor.models.examples import thermal_block_example\n",
    "fom = thermal_block_example(diameter=0.1)\n",
    "parameter_space = fom.parameters.space(0.1, 1.)\n",
    "\n",
    "from pymor.algorithms.scm import construct_scm_functionals\n",
    "initial_parameter = parameter_space.sample_randomly(1)[0]\n",
    "training_parameters = parameter_space.sample_randomly(50)\n",
    "coercivity_estimator, _, _ = construct_scm_functionals(\n",
    "    fom.operator, training_parameters, initial_parameter, product=fom.h1_0_semi_product, max_extensions=10, M=5)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "182c6d18",
   "metadata": {},
   "source": [
    "### POD/neural network approximation"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "f4731a3b",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "8d82da5adabc44a7a92ef1516622283d",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "from pymor.models.examples import thermal_block_example\n",
    "fom = thermal_block_example(diameter=1/10)\n",
    "\n",
    "training_parameters = fom.parameters.space(0.1, 1).sample_uniformly(2)\n",
    "training_snapshots = fom.solution_space.empty(reserve=len(training_parameters))\n",
    "for mu in training_parameters:\n",
    "    training_snapshots.append(fom.solve(mu))\n",
    "\n",
    "# instantiate reductor with training parameters, snapshots, reduced basis and regressor\n",
    "from pymor.reductors.data_driven import DataDrivenPODReductor\n",
    "from pymor.algorithms.ml.nn import NeuralNetworkRegressor\n",
    "reductor = DataDrivenPODReductor(training_parameters, training_snapshots,\n",
    "                                 regressor=NeuralNetworkRegressor())\n",
    "rom = reductor.reduce(restarts=5)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "401b45d7",
   "metadata": {},
   "source": [
    "### Empirical interpolation of coefficient functions"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "6b23756b",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "a0fe811462644bfb9ef944aacc4271c9",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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",
      "text/plain": [
       "<Figure size 640x480 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "from matplotlib import pyplot as plt\n",
    "import numpy as np\n",
    "from pymor.algorithms.ei import interpolate_function\n",
    "from pymor.analyticalproblems.functions import ExpressionFunction\n",
    "\n",
    "f = ExpressionFunction('1 + x[0]**exp[0]', 1, {'exp': 1})\n",
    "parameter_space = f.parameters.space(1, 3)\n",
    "f_ei, _ = interpolate_function(\n",
    "    f, parameter_space.sample_uniformly(10), np.linspace(0, 1, 100).reshape((-1,1)), rtol=1e-4)\n",
    "\n",
    "mu = f.parameters.parse(2.3)\n",
    "X = np.linspace(0, 1, 100)\n",
    "plt.plot(X, f(X.reshape((-1,1)), mu=mu) - f_ei(X.reshape((-1,1)), mu=mu))\n",
    "plt.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9053bcf9",
   "metadata": {},
   "source": [
    "### EI-Greedy/POD-Greedy reduction of nonlinear models"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "115079d7",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "d4e1c18fbebf498c916c8c8f92131462",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "from pymor.algorithms.ei import interpolate_operators\n",
    "from pymor.algorithms.greedy import rb_greedy\n",
    "from pymor.analyticalproblems.burgers import burgers_problem_2d\n",
    "from pymor.discretizers.builtin.fv import discretize_instationary_fv\n",
    "from pymor.reductors.basic import InstationaryRBReductor\n",
    "\n",
    "problem = burgers_problem_2d()\n",
    "fom, _ = discretize_instationary_fv(problem, diameter=1./20, num_flux='engquist_osher', nt=100)\n",
    "fom.enable_caching('disk')  # cache solution snapshots on disk\n",
    "\n",
    "training_parameters = problem.parameter_space.sample_uniformly(10)\n",
    "fom_ei, _ = interpolate_operators(\n",
    "    fom, ['operator'], training_parameters, error_norm=fom.l2_norm, max_interpolation_dofs=30)\n",
    "reductor = InstationaryRBReductor(fom_ei)\n",
    "greedy_data = rb_greedy(\n",
    "    fom, reductor, training_parameters, use_error_estimator=False, max_extensions=10)\n",
    "rom = greedy_data['rom']"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "3a47c7cc",
   "metadata": {},
   "source": [
    "## LTI System MOR\n",
    "\n",
    "Here we consider some of the methods for `LTIModels`.\n",
    "\n",
    "### Balancing-based MOR"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "8efdf659",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "d9664777a1ca4ca5b1b397de9fee2ff1",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "from pymor.models.examples import penzl_example\n",
    "fom = penzl_example()\n",
    "\n",
    "from pymor.reductors.bt import BTReductor\n",
    "rom_bt = BTReductor(fom).reduce(10)\n",
    "\n",
    "from pymor.reductors.bt import LQGBTReductor\n",
    "rom_lqgbt = LQGBTReductor(fom).reduce(10)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "4589d934",
   "metadata": {},
   "source": [
    "### Interpolation-based MOR"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "822e58bb",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "782bcf4099784fb5a92228e39403b393",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "from pymor.models.examples import penzl_example\n",
    "fom = penzl_example()\n",
    "\n",
    "from pymor.reductors.h2 import IRKAReductor\n",
    "rom_irka = IRKAReductor(fom).reduce(10)\n",
    "\n",
    "from pymor.reductors.h2 import TFIRKAReductor\n",
    "rom_irka = TFIRKAReductor(fom).reduce(10)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6ac582c4",
   "metadata": {},
   "source": [
    "### Eigenvalue-based MOR"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "a667bad7",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "1c44d75f092042c59da70588e8d9f0a2",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "from pymor.models.examples import penzl_example\n",
    "fom = penzl_example()\n",
    "\n",
    "from pymor.reductors.mt import MTReductor\n",
    "rom_mt = MTReductor(fom).reduce(10)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "9df72081",
   "metadata": {},
   "source": [
    "### Data-driven MOR"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "a4868e09",
   "metadata": {
    "tags": [
     "remove-output"
    ]
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "f62a00f3660e4f3db7397198ff2109d5",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "Accordion(children=(HTML(value='', layout=Layout(height='16em', width='100%')),), titles=('Log Output',))"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "from pymor.models.examples import penzl_example\n",
    "import numpy as np\n",
    "fom = penzl_example()\n",
    "s = np.logspace(1, 3, 100) * 1j\n",
    "\n",
    "from pymor.reductors.aaa import PAAAReductor\n",
    "rom_aaa = PAAAReductor(s, fom).reduce()\n",
    "\n",
    "from pymor.reductors.loewner import LoewnerReductor\n",
    "rom_loewner = LoewnerReductor(s, fom).reduce()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "50b2b078",
   "metadata": {},
   "source": [
    "Download the code:\n",
    "{download}`mor_methods.md`,\n",
    "{nb-download}`mor_methods.ipynb`."
   ]
  }
 ],
 "metadata": {
  "jupytext": {
   "text_representation": {
    "extension": ".md",
    "format_name": "myst",
    "format_version": 0.13,
    "jupytext_version": "1.15.2"
   }
  },
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.13.6"
  },
  "source_map": [
   12,
   17,
   22,
   34,
   57,
   65,
   102,
   106,
   122,
   126,
   144,
   148,
   160,
   164,
   181,
   185,
   201,
   205,
   224,
   232,
   243,
   247,
   258,
   262,
   270,
   274,
   287
  ],
  "widgets": {
   "application/vnd.jupyter.widget-state+json": {
    "state": {
     "07fa9b8afbde4373bc239fc4e57e217a": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_2adc29a14f6c4c3d99a07be25213160b",
       "placeholder": "​",
       "style": "IPY_MODEL_8c87d76d52684d5eb08e59625884f9e8",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 1, Theta: -5.22773e+00-2.66561e+01j, Residual: 8.20800e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 2, Theta: 6.14997e+01+1.20364e+02j, Residual: 2.31488e+02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 3, Theta: -8.89490e+00-8.26736e-01j, Residual: 1.80887e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 4, Theta: -1.02309e+02+9.19858e+01j, Residual: 1.32944e+02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 5, Theta: -2.83502e+01+1.13745e+02j, Residual: 9.59395e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 6, Theta: -8.30968e-01+9.99921e+01j, Residual: 2.65940e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 7, Theta: -1.00000e+00+1.00000e+02j, Residual: 2.47760e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 8, Theta: -1.00000e+00+1.00000e+02j, Residual: 2.08371e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Pole: -1.00000e+00+1.00000e+02j<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Conjugate Pole: -1.00000e+00-1.00000e+02j<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 7, Theta: -5.11818e+00+1.99528e+02j, Residual: 1.95570e+02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 8, Theta: -1.01953e+00+2.00007e+02j, Residual: 1.22581e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 9, Theta: -1.00000e+00+2.00000e+02j, Residual: 1.38743e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 10, Theta: -1.00000e+00+2.00000e+02j, Residual: 1.38693e-12<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Pole: -1.00000e+00+2.00000e+02j<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Conjugate Pole: -1.00000e+00-2.00000e+02j<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 9, Theta: -1.02764e+00+3.99961e+02j, Residual: 6.06634e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 10, Theta: -1.00000e+00+4.00000e+02j, Residual: 7.29609e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 11, Theta: -1.00000e+00+4.00000e+02j, Residual: 1.56138e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Pole: -1.00000e+00+4.00000e+02j<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Conjugate Pole: -1.00000e+00-4.00000e+02j<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 10, Theta: -2.77337e+00-2.25703e-01j, Residual: 1.09799e+02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 11, Theta: -3.17934e+00+2.33471e-01j, Residual: 9.13371e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 12, Theta: -1.82425e+00-4.38252e-02j, Residual: 8.05867e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 13, Theta: -2.01387e+00+5.29944e-04j, Residual: 3.05617e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 14, Theta: -9.92508e-01+1.11716e-01j, Residual: 8.02813e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 15, Theta: -9.99998e-01-6.00988e-06j, Residual: 1.43946e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 16, Theta: -1.00000e+00-3.16414e-15j, Residual: 5.40159e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Pole: -1.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 15, Theta: -2.00000e+00+1.69034e-11j, Residual: 2.46825e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 16, Theta: -2.00000e+00-1.24345e-14j, Residual: 4.12847e-13<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Pole: -2.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 15, Theta: -3.00000e+00-7.84970e-09j, Residual: 7.90982e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 16, Theta: -3.00000e+00-3.53051e-14j, Residual: 9.53756e-12<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Pole: -3.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 15, Theta: -4.00000e+00+1.44593e-05j, Residual: 3.07625e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 16, Theta: -4.00000e+00-2.22045e-16j, Residual: 2.83348e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Pole: -4.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>samdp</bold>: Step: 15, Theta: -5.00000e+00+9.75882e-05j, Residual: 7.89054e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>LTIPGReductor</bold>: Building ROM ...<br></div>"
      }
     },
     "16913ed0239242a3967903eb6ccd7238": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_eae51d020de84e1981fa8d633f3ff565"
       ],
       "layout": "IPY_MODEL_36ba849d02e54a2191949c10307d1754",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "1acd2785e2be4f0cac2c68bdbd5ecb54": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_4d15f3c1cce14e598621db3d1db635c6",
       "placeholder": "​",
       "style": "IPY_MODEL_ec1630843d1a4e36abc87a70d124be69",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 1: 4.70519e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 2: 4.11276e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 4: 3.80485e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 6: 3.60769e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 8: 3.47048e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 10: 3.38956e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 12: 2.64325e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 14: 2.55645e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 16: 2.53360e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 18: 2.35558e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 20: 1.36598e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 22: 1.36522e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 24: 1.36044e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 26: 1.30162e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 28: 1.30069e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 30: 1.29750e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 32: 1.29687e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 33: 1.27134e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 35: 1.27075e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 36: 1.23738e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 38: 2.87264e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 39: 2.83539e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 41: 2.81845e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 43: 1.26187e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 44: 1.08075e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 45: 3.78805e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 46: 1.93073e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 47: 1.39965e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 49: 1.39009e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 50: 8.18039e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 51: 1.97127e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 52: 7.04409e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 53: 4.08047e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 55: 3.21046e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 56: 4.49953e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 57: 1.91517e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 58: 1.44064e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 59: 1.12671e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 61: 8.17619e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 62: 6.89158e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 63: 6.71517e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 64: 6.69988e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 65: 6.61104e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 67: 6.44165e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 68: 6.32330e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 69: 6.32028e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 70: 6.29770e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 72: 3.88769e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 74: 4.48577e-11<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 1: 4.70519e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 2: 4.11276e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 4: 3.80485e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 6: 3.60769e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 8: 3.47048e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 10: 3.38956e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 12: 2.64325e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 14: 2.55645e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 16: 2.53360e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 18: 2.35558e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 20: 1.36598e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 22: 1.36522e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 24: 1.36044e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 26: 1.30162e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 28: 1.30069e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 30: 1.29750e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 32: 1.29687e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 33: 1.27134e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 35: 1.27075e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 36: 1.23738e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 38: 2.87264e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 39: 2.83539e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 41: 2.81845e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 43: 1.26187e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 44: 1.08075e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 45: 3.78805e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 46: 1.93073e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 47: 1.39965e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 49: 1.39009e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 50: 8.18039e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 51: 1.97127e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 52: 7.04409e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 53: 4.08047e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 55: 3.21046e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 56: 4.49953e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 57: 1.91517e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 58: 1.44064e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 59: 1.12671e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 61: 8.17619e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 62: 6.89158e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 63: 6.71517e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 64: 6.69988e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 65: 6.61104e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 67: 6.44165e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 68: 6.32330e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 69: 6.32028e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 70: 6.29770e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 72: 3.88769e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_lyap_lrcf</bold>: Relative residual at step 74: 4.48577e-11<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 1: 3.50710e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 2: 2.22042e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 3: 2.01852e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 4: 1.99422e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 6: 1.88148e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 8: 1.64721e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 9: 1.45856e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 11: 1.13394e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 13: 8.49960e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>solve_ricc_lrcf</bold>: Relative residual at step 15: 8.41612e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 17: 8.00893e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 18: 7.99285e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 19: 7.98594e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 20: 7.98371e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 21: 7.98295e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 22: 7.98235e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 23: 7.95294e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 24: 7.94917e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 25: 7.94558e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 26: 7.94362e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 27: 7.93921e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 28: 7.93383e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 29: 7.92701e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 31: 7.14446e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 32: 7.12560e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 34: 6.73821e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 36: 6.46843e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 38: 6.20441e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 40: 5.96723e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 42: 5.77335e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 44: 5.60456e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 46: 5.48528e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 48: 4.45040e-06<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 50: 2.08328e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 52: 1.72850e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 54: 1.48932e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 56: 8.39853e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 58: 6.98155e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 60: 3.38664e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 61: 2.51606e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 62: 1.70056e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 63: 1.51658e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 64: 1.36925e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 65: 1.24526e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 66: 1.08025e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 67: 1.01434e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 68: 1.61156e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 69: 1.96155e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 70: 1.62618e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 71: 1.56078e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 72: 1.50088e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 73: 1.44574e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 74: 1.39645e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 75: 1.19244e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 76: 1.17621e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 77: 1.13917e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 78: 1.10894e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 79: 1.08050e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 80: 1.04211e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 81: 8.89494e-11<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 1: 3.50710e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 2: 2.22042e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 3: 2.01697e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 4: 1.99386e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 5: 1.92058e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 6: 1.76875e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 8: 1.63051e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 10: 1.43229e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 12: 1.32239e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 14: 9.16831e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 16: 8.68793e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 18: 7.42117e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 20: 7.10912e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 22: 6.95608e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 24: 6.48571e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 25: 6.29972e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 26: 6.25694e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 27: 6.24850e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 28: 6.23865e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 29: 6.23009e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 30: 6.22215e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 31: 6.21440e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 32: 6.20678e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 33: 6.20280e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 35: 5.66142e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 36: 5.65547e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 37: 5.59744e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 38: 5.51511e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 39: 5.50734e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 40: 5.40532e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 41: 5.33104e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>solve_ricc_lrcf</bold>: Relative residual at step 42: 5.30177e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:07 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 43: 5.23110e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 44: 5.15637e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 45: 5.08907e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 47: 4.86334e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 49: 4.64599e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 51: 4.49000e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 53: 4.37189e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 55: 4.28181e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 57: 4.21134e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 59: 4.15022e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 61: 4.10090e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 62: 4.04695e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 63: 4.02655e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 65: 3.89305e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 67: 3.72323e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 69: 3.54201e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 71: 3.37905e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 73: 3.25547e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 75: 2.05895e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 76: 1.97440e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 77: 1.78688e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 78: 1.62439e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 79: 1.58573e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 80: 1.52433e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 81: 1.37733e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 82: 1.27420e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 83: 1.25399e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 84: 1.20246e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 85: 1.15852e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 87: 1.02330e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 89: 5.61911e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 91: 3.48653e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 92: 3.14253e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 94: 3.09583e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 96: 3.05262e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 98: 3.00574e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 99: 2.79164e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 100: 2.78043e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 101: 2.77040e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 102: 2.75742e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 104: 2.65917e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 106: 2.56027e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 107: 2.51068e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 109: 2.41888e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 111: 2.34014e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 112: 2.29632e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 114: 2.20456e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 115: 2.19514e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 117: 2.06036e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 118: 2.04512e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 119: 2.03902e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 120: 2.03311e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 121: 2.02980e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 122: 2.02383e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 124: 1.94944e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 125: 1.94402e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 126: 1.93892e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 127: 1.92754e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 128: 1.83051e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 130: 7.52313e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 131: 7.52140e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 132: 7.51965e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 133: 7.51787e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 134: 7.51611e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 135: 7.51433e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>solve_ricc_lrcf</bold>: Relative residual at step 136: 7.51252e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:08 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>solve_ricc_lrcf</bold>: Relative residual at step 137: 7.14863e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>solve_ricc_lrcf</bold>: Relative residual at step 138: 7.14336e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>solve_ricc_lrcf</bold>: Relative residual at step 139: 7.09959e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>solve_ricc_lrcf</bold>: Relative residual at step 141: 1.90931e-11<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div>"
      }
     },
     "1c44d75f092042c59da70588e8d9f0a2": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_07fa9b8afbde4373bc239fc4e57e217a"
       ],
       "layout": "IPY_MODEL_9587d56eba344f7eb2871b9213212a12",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "1c665231c2b54cf7b6dd98a4ce45e53a": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "1dae1721f2c948c185e2cb1cadd28f1a": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "2387fbe2c8234be0bff16c39542d8b99": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "2a0eda78daa34cf697f743fe55b02bcc": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "2adc29a14f6c4c3d99a07be25213160b": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "32ae4b1b6cdb400abd66b79c32319d54": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "32d5e698fd544811a6e1a1b8e0ad1323": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "3417a359876645209abf313ff065ee7a": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_9fe87e5805d34fd98eec59dd5c36d11f",
       "placeholder": "​",
       "style": "IPY_MODEL_488fa65493114420bf144f1b26974b52",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>weak_greedy</bold>: Started greedy search on training set of size 1000.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector -1 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>weak_greedy</bold>: Maximum error after 0 extensions: 1.8554913745244097 (mu = {diffusion: [0.14752639126009934, 0.10046686974913498, 0.4926849937248369, 0.7971614931630068]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.14752639126009934, 0.10046686974913498, 0.4926849937248369, 0.7971614931630068]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.14752639126009934, 0.10046686974913498, 0.4926849937248369, 0.7971614931630068]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.14752639126009934, 0.10046686974913498, 0.4926849937248369, 0.7971614931630068]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 0 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 1 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 5<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 <bold>weak_greedy</bold>: Maximum error after 1 extensions: 1.5887606367813507 (mu = {diffusion: [0.10173673708600552, 0.9576359115634129, 0.11798193180683139, 0.47672751299908034]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.10173673708600552, 0.9576359115634129, 0.11798193180683139, 0.47672751299908034]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.10173673708600552, 0.9576359115634129, 0.11798193180683139, 0.47672751299908034]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.10173673708600552, 0.9576359115634129, 0.11798193180683139, 0.47672751299908034]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 1 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 4 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 8<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:02 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 <bold>weak_greedy</bold>: Maximum error after 2 extensions: 1.4284294198930496 (mu = {diffusion: [0.6906421353947412, 0.1325464394452266, 0.10488685071583043, 0.14649212531295905]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.6906421353947412, 0.1325464394452266, 0.10488685071583043, 0.14649212531295905]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.6906421353947412, 0.1325464394452266, 0.10488685071583043, 0.14649212531295905]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.6906421353947412, 0.1325464394452266, 0.10488685071583043, 0.14649212531295905]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 2 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 7 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 11<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 <bold>weak_greedy</bold>: Maximum error after 3 extensions: 1.0830277525852914 (mu = {diffusion: [0.10387519810091078, 0.6140506258501669, 0.9946699952071406, 0.13477987884419615]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.10387519810091078, 0.6140506258501669, 0.9946699952071406, 0.13477987884419615]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.10387519810091078, 0.6140506258501669, 0.9946699952071406, 0.13477987884419615]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.10387519810091078, 0.6140506258501669, 0.9946699952071406, 0.13477987884419615]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 3 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 10 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 14<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:03 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 <bold>weak_greedy</bold>: Maximum error after 4 extensions: 0.9890019850641475 (mu = {diffusion: [0.556563431423839, 0.9925970283358396, 0.10360684426000555, 0.11492182170780124]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.556563431423839, 0.9925970283358396, 0.10360684426000555, 0.11492182170780124]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.556563431423839, 0.9925970283358396, 0.10360684426000555, 0.11492182170780124]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.556563431423839, 0.9925970283358396, 0.10360684426000555, 0.11492182170780124]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 4 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 13 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:04 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 <bold>weak_greedy</bold>: Maximum error after 5 extensions: 0.6709584169338609 (mu = {diffusion: [0.3471132191148264, 0.4611757018439767, 0.5761354541400012, 0.1008909945337475]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.3471132191148264, 0.4611757018439767, 0.5761354541400012, 0.1008909945337475]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.3471132191148264, 0.4611757018439767, 0.5761354541400012, 0.1008909945337475]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.3471132191148264, 0.4611757018439767, 0.5761354541400012, 0.1008909945337475]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 5 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 16 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 20<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 <bold>weak_greedy</bold>: Maximum error after 6 extensions: 0.5264611910320455 (mu = {diffusion: [0.6311758444895136, 0.8644917997808012, 0.10426725362068653, 0.86803251340813]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.6311758444895136, 0.8644917997808012, 0.10426725362068653, 0.86803251340813]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.6311758444895136, 0.8644917997808012, 0.10426725362068653, 0.86803251340813]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.6311758444895136, 0.8644917997808012, 0.10426725362068653, 0.86803251340813]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 6 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 19 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 21 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 22<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 23<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:05 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 <bold>weak_greedy</bold>: Maximum error after 7 extensions: 0.366300824325748 (mu = {diffusion: [0.10350473174301936, 0.5007310349824367, 0.400923304045653, 0.2493936203383246]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.10350473174301936, 0.5007310349824367, 0.400923304045653, 0.2493936203383246]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.10350473174301936, 0.5007310349824367, 0.400923304045653, 0.2493936203383246]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.10350473174301936, 0.5007310349824367, 0.400923304045653, 0.2493936203383246]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 7 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 21 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 22 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 23<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 24<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 25<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:06 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 <bold>weak_greedy</bold>: Maximum error after 8 extensions: 0.3545159849061687 (mu = {diffusion: [0.9994510328630741, 0.10673469649608996, 0.24494111453794593, 0.706729870803821]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.9994510328630741, 0.10673469649608996, 0.24494111453794593, 0.706729870803821]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.9994510328630741, 0.10673469649608996, 0.24494111453794593, 0.706729870803821]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.9994510328630741, 0.10673469649608996, 0.24494111453794593, 0.706729870803821]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 8 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 22 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 23<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 24<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 25<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 26<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 <bold>weak_greedy</bold>: Maximum error after 9 extensions: 0.059542926641639154 (mu = {diffusion: [0.10149463690732048, 0.2008633338988278, 0.8764881073667903, 0.10110975626071733]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.10149463690732048, 0.2008633338988278, 0.8764881073667903, 0.10110975626071733]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.10149463690732048, 0.2008633338988278, 0.8764881073667903, 0.10110975626071733]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.10149463690732048, 0.2008633338988278, 0.8764881073667903, 0.10110975626071733]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 9 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 22 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 23 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 24 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 25 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 26 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:07 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 <bold>weak_greedy</bold>: Maximum error after 10 extensions: 0.05432367745052898 (mu = {diffusion: [0.6751122843377482, 0.10207789532806781, 0.9940316485700602, 0.35280674736773965]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.6751122843377482, 0.10207789532806781, 0.9940316485700602, 0.35280674736773965]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.6751122843377482, 0.10207789532806781, 0.9940316485700602, 0.35280674736773965]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.6751122843377482, 0.10207789532806781, 0.9940316485700602, 0.35280674736773965]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 10 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 26 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 27 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 28 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 29 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing linearly dependent vector 30<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:08 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 <bold>weak_greedy</bold>: Maximum error after 11 extensions: 0.02003407841523277 (mu = {diffusion: [0.1800358687452544, 0.12138085581146787, 0.15065993168379208, 0.8682671558320606]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.1800358687452544, 0.12138085581146787, 0.15065993168379208, 0.8682671558320606]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {diffusion: [0.1800358687452544, 0.12138085581146787, 0.15065993168379208, 0.8682671558320606]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1800358687452544, 0.12138085581146787, 0.15065993168379208, 0.8682671558320606]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   <bold>CoerciveRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   <bold>CoerciveRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 11 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 29 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 30 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 31 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 32 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 33 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 |   |   <bold>CoerciveRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 <bold>weak_greedy</bold>: Maximum error after 12 extensions: 0.002455151615936483 (mu = {diffusion: [0.11607486325766275, 0.9324662254362509, 0.9567359110728171, 0.11084667671433268]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 <bold>weak_greedy</bold>: Relative error tolerance (0.01) reached! Stopping extension loop.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 <bold>weak_greedy</bold>: Greedy search took 8.49673557600181 seconds<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:09 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 0.9, 0.2, 0.3]} ...<br></div>"
      }
     },
     "35c0eff329004c3aa387e3c20eb5d0fa": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_77cc5658794b4e5ea560917bddcb0a62",
       "placeholder": "​",
       "style": "IPY_MODEL_8b65287b69ca43f4ad46f2386043084d",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>construct_scm_functionals</bold>: Computing bounds on design variables by solving eigenvalue problems ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 0.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 3.52604e-46<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 1.45433e-06<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 6.79465e-46<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 4.38655e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 2.56579e-20<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 8.42881e-37<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 4.86105e-15<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 7.82804e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 5.54409e-06<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 3: 7.55027e-12<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 4: 6.68554e-61<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 0.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 2.29643e-07<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 1.55118e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 3: 0.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 1.91921e-06<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 3.55572e-06<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 3: 3.65621e-16<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 <bold>construct_scm_functionals</bold>: Running greedy algorithm to construct functionals ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 1.14109e-10<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 1.19482e-14<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <span style=\"color:yellow;\">|WARNING|</span><bold>LBSuccessiveConstraintsFunctional</bold>: Only 1 parameters available, M is clipped ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 1 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>weak_greedy</bold>: Started greedy search on training set of size 50.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>weak_greedy</bold>: Maximum error after 0 extensions: 0.9685239803539469 (mu = {diffusion: [0.600993460618704, 0.3302025880824939, 0.9785807779222803, 0.12948150723732574]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.600993460618704, 0.3302025880824939, 0.9785807779222803, 0.12948150723732574]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 1.61347e-24<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <span style=\"color:yellow;\">|WARNING|</span><bold>LBSuccessiveConstraintsFunctional</bold>: Only 2 parameters available, M is clipped ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 2 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:19 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Maximum error after 1 extensions: 0.9101639663454166 (mu = {diffusion: [0.7110870948234433, 0.16405194029310433, 0.978305133053191, 0.7160742807272306]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.7110870948234433, 0.16405194029310433, 0.978305133053191, 0.7160742807272306]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 9.05902e-14<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <span style=\"color:yellow;\">|WARNING|</span><bold>LBSuccessiveConstraintsFunctional</bold>: Only 3 parameters available, M is clipped ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 3 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Maximum error after 2 extensions: 0.7476215388829002 (mu = {diffusion: [0.43005175562617093, 0.745767579408055, 0.9546427386107142, 0.7021336871112689]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.43005175562617093, 0.745767579408055, 0.9546427386107142, 0.7021336871112689]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 2.16138e-21<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <span style=\"color:yellow;\">|WARNING|</span><bold>LBSuccessiveConstraintsFunctional</bold>: Only 4 parameters available, M is clipped ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 4 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Maximum error after 3 extensions: 0.49883722273872444 (mu = {diffusion: [0.8047115519111584, 0.845310509503768, 0.528656088775313, 0.5579138248961332]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.8047115519111584, 0.845310509503768, 0.528656088775313, 0.5579138248961332]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 6.62176e-16<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 5 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Maximum error after 4 extensions: 0.3543511063491154 (mu = {diffusion: [0.5828378406024611, 0.5135924361355753, 0.965812927436974, 0.7361552564614255]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.5828378406024611, 0.5135924361355753, 0.965812927436974, 0.7361552564614255]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 5.81142e-15<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 5 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Maximum error after 5 extensions: 0.26545495815478093 (mu = {diffusion: [0.5861277570997263, 0.9309011817426549, 0.5853483840282242, 0.6553206191445047]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.5861277570997263, 0.9309011817426549, 0.5853483840282242, 0.6553206191445047]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 2.02185e-09<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:20 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 1.64947e-15<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 5 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Maximum error after 6 extensions: 0.3376987415498452 (mu = {diffusion: [0.8523289728251581, 0.2678097638751199, 0.29734457583078194, 0.39088656054350457]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.8523289728251581, 0.2678097638751199, 0.29734457583078194, 0.39088656054350457]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 5.77395e-16<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 5 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Maximum error after 7 extensions: 0.20809224131628434 (mu = {diffusion: [0.43252394156312757, 0.3467821620640599, 0.7563441194743503, 0.3786868270244659]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.43252394156312757, 0.3467821620640599, 0.7563441194743503, 0.3786868270244659]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 4.25561e-13<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 5.99011e-08<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 3: 0.00000e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 5 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Maximum error after 8 extensions: 0.20136229580183745 (mu = {diffusion: [0.6319698552584518, 0.6596165744200175, 0.7180785626873118, 0.9146734805921164]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.6319698552584518, 0.6596165744200175, 0.7180785626873118, 0.9146734805921164]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 1.60958e-11<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 7.74469e-06<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 3: 2.13065e-14<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 5 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:21 |   <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   <bold>weak_greedy</bold>: Maximum error after 9 extensions: 0.16205979387619338 (mu = {diffusion: [0.5325039017190264, 0.33381842106367576, 0.3173406457283262, 0.3385695597174747]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   <bold>weak_greedy</bold>: Extending surrogate for mu = {diffusion: [0.5325039017190264, 0.33381842106367576, 0.3173406457283262, 0.3385695597174747]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 1: 4.24255e-13<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>eigs</bold>: Maximum of relative Ritz estimates at step 2: 7.04796e-15<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   |   <bold>LBSuccessiveConstraintsFunctional</bold>: Setting up KDTree to find 5 neighboring parameters ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      |   <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   <bold>weak_greedy</bold>: Maximum number of 10 extensions reached.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 |   <bold>weak_greedy</bold>: Greedy search took 2.499387695999758 seconds<br></div>"
      }
     },
     "36ba849d02e54a2191949c10307d1754": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "3710e60c730a483ca339a10c074b92af": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "4706fddf30aa43a8a5d0205e7750a67d": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_c17eded40ab54295ae8935df34ddaecd",
       "placeholder": "​",
       "style": "IPY_MODEL_2a0eda78daa34cf697f743fe55b02bcc",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div>"
      }
     },
     "488fa65493114420bf144f1b26974b52": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "4d15f3c1cce14e598621db3d1db635c6": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "502fc4f316764803bf36c4d81d91277d": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_98b3c6811e32410c890dd2c76d65ef70",
       "placeholder": "​",
       "style": "IPY_MODEL_f04b7fbb7ab94a2a9d6d3407f8093153",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 1: 9.71703e-01, number of interpolation points [0]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 2: 2.91402e+00, number of interpolation points [2]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 3: 7.11327e-01, number of interpolation points [4]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 4: 4.51138e-01, number of interpolation points [6]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 5: 3.89212e-02, number of interpolation points [8]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 6: 9.57661e-03, number of interpolation points [10]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 7: 1.81011e-04, number of interpolation points [12]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 8: 1.06572e-05, number of interpolation points [14]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 9: 7.24459e-07, number of interpolation points [16]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>PAAAReductor</bold>: Relative error at step 10: 2.75459e-08, number of interpolation points [18]<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:12 <bold>LoewnerReductor</bold>: Added 100 complex conjugates to the data.<br></div>"
      }
     },
     "542615f4b9974f4689e3cc5223ec8e0b": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_f9f12ce3ff7547ff9b321abe936dcdb3",
       "placeholder": "​",
       "style": "IPY_MODEL_651b394e7b204f869056cc47daa000ca",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>weak_greedy</bold>: Started greedy search on training set of size 20.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector -1 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 2 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector -1 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>weak_greedy</bold>: Maximum error after 0 extensions: 86.27891218862909 (mu = {top: [1.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 0 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 2 of norm 0.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 0 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:10 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 <bold>weak_greedy</bold>: Maximum error after 1 extensions: 123.41955522454009 (mu = {top: [100.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 1 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 6 of norm 2.708307582629875e-19<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 1 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:11 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 <bold>weak_greedy</bold>: Maximum error after 2 extensions: 123.78011322149783 (mu = {top: [100.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 2 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 10 of norm 4.230166601376694e-17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 11 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 12 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 13 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 14 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 2 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 <bold>weak_greedy</bold>: Maximum error after 3 extensions: 32.22700676319303 (mu = {top: [21.842105263157894]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [21.842105263157894]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [21.842105263157894]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:12 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [21.842105263157894]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 3 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 14 of norm 5.1064341617078875e-17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 15 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 16 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 17 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 18 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 3 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 <bold>weak_greedy</bold>: Maximum error after 4 extensions: 7.917479190821252 (mu = {top: [100.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 4 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 18 of norm 3.030895983246494e-17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 19 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:13 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 20 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 21 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 22 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 4 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 <bold>weak_greedy</bold>: Maximum error after 5 extensions: 4.03015683240833 (mu = {top: [6.2105263157894735]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 5 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 22 of norm 1.8609720953011973e-17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 23 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 24 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 25 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 26 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 5 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:14 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 <bold>weak_greedy</bold>: Maximum error after 6 extensions: 2.4960971185030845 (mu = {top: [6.2105263157894735]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 6 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 26 of norm 2.344211812158124e-16<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 27 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 28 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 29 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 30 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 6 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:15 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 <bold>weak_greedy</bold>: Maximum error after 7 extensions: 2.288470564330854 (mu = {top: [100.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [100.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 7 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 30 of norm 3.927536641559717e-17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 31 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 32 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 33 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 34 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 7 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:16 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 <bold>weak_greedy</bold>: Maximum error after 8 extensions: 1.195457061092199 (mu = {top: [6.2105263157894735]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [6.2105263157894735]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 8 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 34 of norm 4.767014064274322e-17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 35 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 36 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 37 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 38 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 8 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 <bold>weak_greedy</bold>: Maximum error after 9 extensions: 0.8447479650788559 (mu = {top: [42.68421052631579]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 <bold>weak_greedy</bold>: Extending surrogate for mu = {top: [42.68421052631579]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {top: [42.68421052631579]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>InstationaryModel</bold>: Computing solution of instationary_StationaryProblem_CG for {top: [42.68421052631579]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (51 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>ParabolicRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   <bold>ParabolicRBReductor</bold>: Assembling error estimator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 9 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Removing vector 38 of norm 5.951382173780546e-17<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 39 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 40 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:17 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 41 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 42 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   |   <bold>ImplicitEulerResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   |   <bold>ResidualReductor</bold>: Estimating residual range ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Estimating image for basis vector 9 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   |   |   <bold>estimate_image_hierarchical</bold>: Orthonormalizing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   |   |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 10 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   |   <bold>ResidualReductor</bold>: Projecting residual operator ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 |   |   <bold>ParabolicRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>weak_greedy</bold>: Maximum number of 10 extensions reached.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:18 <bold>weak_greedy</bold>: Greedy search took 7.727217035000649 seconds<br></div>"
      }
     },
     "651b394e7b204f869056cc47daa000ca": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "7120d30e1e314208b59bd7485dfc3dd2": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "71f18e7bf9be4bc581f94abec9a4320a": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "72e461ffff734eb4811fcd9dda344276": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "77cc5658794b4e5ea560917bddcb0a62": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "782bcf4099784fb5a92228e39403b393": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_8913df0fb5cd4f1eb459bfaf6c27d73c"
       ],
       "layout": "IPY_MODEL_d9dbdb5d85024d36a0b0751d841db04c",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "81e44a160a824e069d12ad650e66cf33": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "8913df0fb5cd4f1eb459bfaf6c27d73c": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_b6942660dce141b38b21197fa9f1599c",
       "placeholder": "​",
       "style": "IPY_MODEL_32d5e698fd544811a6e1a1b8e0ad1323",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Generating initial interpolation data<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Starting IRKA<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 1: 1.256416e+03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 2: 1.013453e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 3: 7.464763e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 4: 4.094337e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 5: 2.921094e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 6: 4.338619e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 7: 3.070009e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 8: 1.999892e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 9: 1.938729e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 10: 1.073938e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 11: 6.197493e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 12: 3.637616e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 13: 2.154878e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 14: 1.283689e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 15: 7.673469e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 16: 4.596596e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 17: 2.756988e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 18: 1.654886e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 19: 9.938095e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 20: 5.969799e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 21: 3.586653e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>IRKAReductor</bold>: Convergence criterion in iteration 22: 2.155078e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:09 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>IRKAReductor</bold>: Convergence criterion in iteration 23: 1.294980e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>LTIPGReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>LTIPGReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>IRKAReductor</bold>: Convergence criterion in iteration 24: 7.781780e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Generating initial interpolation data<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Starting TF-IRKA<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 1: 1.489601e+03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 2: 1.843621e+01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 3: 4.525938e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 4: 3.757934e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 5: 2.977314e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 6: 3.703297e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 7: 5.112424e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 8: 2.863096e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 9: 1.654796e-01<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 10: 9.520765e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 11: 1.999975e+00<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 12: 3.262705e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 13: 1.935568e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 14: 1.154021e-02<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:10 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 15: 6.901920e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 16: 4.135721e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 17: 2.481034e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 18: 1.489417e-03<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 19: 8.945024e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 20: 5.373489e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 21: 3.228471e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 22: 1.939890e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 23: 1.165685e-04<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:11 <bold>TFIRKAReductor</bold>: Convergence criterion in iteration 24: 7.004860e-05<br></div>"
      }
     },
     "8af067baac054cc4b80079020962dc27": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_542615f4b9974f4689e3cc5223ec8e0b"
       ],
       "layout": "IPY_MODEL_eea5a94b1fe54db99c759b62e7ad3917",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "8b65287b69ca43f4ad46f2386043084d": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "8c87d76d52684d5eb08e59625884f9e8": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "8d82da5adabc44a7a92ef1516622283d": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_fcfff0c0dc0b4cfa96e251de94d9a3b1"
       ],
       "layout": "IPY_MODEL_1dae1721f2c948c185e2cb1cadd28f1a",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "9587d56eba344f7eb2871b9213212a12": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "9615de66e2f64d19a1830fe2b70132ea": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "98b3c6811e32410c890dd2c76d65ef70": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "9fe87e5805d34fd98eec59dd5c36d11f": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "a0fe811462644bfb9ef944aacc4271c9": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_fe367748b73e42e2a29506fabdd7f568"
       ],
       "layout": "IPY_MODEL_1c665231c2b54cf7b6dd98a4ce45e53a",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "a80bc3cd24864bbfb08df1c827eba44d": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "b0282a5cf5b14864a174e8e6f3bbff0d": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "b6942660dce141b38b21197fa9f1599c": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "bbb92941143c4a70bbd1c7ef5766255c": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_2387fbe2c8234be0bff16c39542d8b99",
       "placeholder": "​",
       "style": "IPY_MODEL_3710e60c730a483ca339a10c074b92af",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>interpolate_operators</bold>: Computing operator evaluations on solution snapshots ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:38 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.1111111111111112]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:39 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.2222222222222223]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:40 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.3333333333333333]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:40 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.4444444444444444]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:41 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.5555555555555556]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:42 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.6666666666666665]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:43 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.7777777777777777]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:44 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.8888888888888888]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:44 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:45 <bold>interpolate_operators</bold>: Performing EI-Greedy:<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:45 |   <bold>ei_greedy</bold>: Generating Interpolation Data ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:45 |   <bold>ei_greedy</bold>: Maximum interpolation error with 0 interpolation DOFs: 3.934113181263776<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:45 |   <bold>ei_greedy</bold>: Maximum interpolation error with 1 interpolation DOFs: 3.9048640282710774<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:45 |   <bold>ei_greedy</bold>: Maximum interpolation error with 2 interpolation DOFs: 3.5881943476711<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 3 interpolation DOFs: 3.4048912332269463<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 4 interpolation DOFs: 3.3144561887417283<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 5 interpolation DOFs: 3.3697612891984043<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 6 interpolation DOFs: 3.3420414416107347<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 7 interpolation DOFs: 3.1375356134841663<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 8 interpolation DOFs: 2.4532841063710404<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 9 interpolation DOFs: 2.205115385000055<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 10 interpolation DOFs: 2.2277132254124186<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 11 interpolation DOFs: 2.12103149693331<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 12 interpolation DOFs: 1.9860779770386465<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 13 interpolation DOFs: 2.5666797792758667<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 14 interpolation DOFs: 1.9157550180497318<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 15 interpolation DOFs: 2.128597578640342<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 16 interpolation DOFs: 1.8067954060756617<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 17 interpolation DOFs: 1.7054789456564283<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:46 |   <bold>ei_greedy</bold>: Maximum interpolation error with 18 interpolation DOFs: 1.7261316887437086<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 19 interpolation DOFs: 1.3440686623551596<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 20 interpolation DOFs: 1.269390896896463<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 21 interpolation DOFs: 2.123611796629837<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 22 interpolation DOFs: 1.2565758366323398<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 23 interpolation DOFs: 1.2838556631890217<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 24 interpolation DOFs: 1.4768445499848246<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 25 interpolation DOFs: 1.1304751718656363<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 26 interpolation DOFs: 1.106670666479193<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 27 interpolation DOFs: 0.9057278587449487<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 28 interpolation DOFs: 0.9351323184308202<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum interpolation error with 29 interpolation DOFs: 0.9201172124766811<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Maximum number of interpolation DOFs reached. Stopping extension loop.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Final maximum interpolation error with 30 interpolation DOFs: 0.820632910019127<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>ei_greedy</bold>: Interpolation matrix is not lower triangular with maximum error of 3.903201023067946e-16<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 <bold>weak_greedy</bold>: Started greedy search on training set of size 10.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:47 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 <bold>weak_greedy</bold>: Maximum error after 0 extensions: 31.605468360318966 (mu = {exponent: [1.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:48 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 <bold>weak_greedy</bold>: Maximum error after 1 extensions: 11.747419668829298 (mu = {exponent: [1.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:49 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 <bold>weak_greedy</bold>: Maximum error after 2 extensions: 9.832527445883123 (mu = {exponent: [2.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:51 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.8888888888888888]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 <bold>weak_greedy</bold>: Maximum error after 3 extensions: 9.31333147691871 (mu = {exponent: [2.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:52 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.1111111111111112]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:53 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.2222222222222223]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:53 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.3333333333333333]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:54 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.4444444444444444]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:54 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.5555555555555556]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:54 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.6666666666666665]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:55 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.7777777777777777]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:55 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.8888888888888888]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 <bold>weak_greedy</bold>: Maximum error after 4 extensions: 5.632709374950327 (mu = {exponent: [1.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:56 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.1111111111111112]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:57 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.2222222222222223]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:57 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.3333333333333333]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:58 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.4444444444444444]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:58 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.5555555555555556]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 <bold>weak_greedy</bold>: Maximum error after 5 extensions: 4.284890452488081 (mu = {exponent: [1.6666666666666665]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [1.6666666666666665]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [1.6666666666666665]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:59 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 <bold>weak_greedy</bold>: Maximum error after 6 extensions: 3.981157834268533 (mu = {exponent: [2.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:00 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.4444444444444444]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:01 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.5555555555555556]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:01 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.6666666666666665]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:02 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.7777777777777777]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:02 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.8888888888888888]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:02 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 <bold>weak_greedy</bold>: Maximum error after 7 extensions: 3.69864349440721 (mu = {exponent: [2.0]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [2.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:03 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.1111111111111112]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:04 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.2222222222222223]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:04 |   <bold>InstationaryModel</bold>: Computing solution of burgers_problem_2d(1.0, 1.0, True, 'sin')_FV for {exponent: [1.3333333333333333]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 <bold>weak_greedy</bold>: Maximum error after 8 extensions: 3.4147218625378817 (mu = {exponent: [1.5555555555555556]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [1.5555555555555556]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [1.5555555555555556]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:05 <bold>weak_greedy</bold>: Estimating errors ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>weak_greedy</bold>: Maximum error after 9 extensions: 2.7095859289823303 (mu = {exponent: [1.3333333333333333]})<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>weak_greedy</bold>: Extending surrogate for mu = {exponent: [1.3333333333333333]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   <bold>RBSurrogate</bold>: Computing solution snapshot for mu = {exponent: [1.3333333333333333]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   <bold>RBSurrogate</bold>: Extending basis with solution snapshot ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   |   <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   |   |   <bold>method_of_snapshots</bold>: Computing Gramian (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   |   |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   |   |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (101 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   <bold>RBSurrogate</bold>: Reducing ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   |   <bold>InstationaryRBReductor</bold>: Operator projection ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 |   |   <bold>InstationaryRBReductor</bold>: Building ROM ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">      <br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>weak_greedy</bold>: Maximum number of 10 extensions reached.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">01:06 <bold>weak_greedy</bold>: Greedy search took 18.61799744199743 seconds<br></div>"
      }
     },
     "bea971720151428e81643e2a73a1716b": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_3417a359876645209abf313ff065ee7a"
       ],
       "layout": "IPY_MODEL_7120d30e1e314208b59bd7485dfc3dd2",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "bff9d3da34c74e12924c40a989afc96c": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_35c0eff329004c3aa387e3c20eb5d0fa"
       ],
       "layout": "IPY_MODEL_a80bc3cd24864bbfb08df1c827eba44d",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "c17eded40ab54295ae8935df34ddaecd": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "c5d477cfa7334d68bbfa9e2e5eb268ee": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "c7238442753b45ce8d25d1c8d0b07e6a": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_4706fddf30aa43a8a5d0205e7750a67d"
       ],
       "layout": "IPY_MODEL_d66d6e899ceb42e8a0a934a5c27973bc",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "d4e1c18fbebf498c916c8c8f92131462": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_bbb92941143c4a70bbd1c7ef5766255c"
       ],
       "layout": "IPY_MODEL_b0282a5cf5b14864a174e8e6f3bbff0d",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "d66d6e899ceb42e8a0a934a5c27973bc": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "d9664777a1ca4ca5b1b397de9fee2ff1": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_1acd2785e2be4f0cac2c68bdbd5ecb54"
       ],
       "layout": "IPY_MODEL_72e461ffff734eb4811fcd9dda344276",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "d9dbdb5d85024d36a0b0751d841db04c": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "eae51d020de84e1981fa8d633f3ff565": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_f1c6477b3da54fbd91571db371809177",
       "placeholder": "​",
       "style": "IPY_MODEL_f4685d5edbd04d6bb4f08ffa8145142a",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.796560443700367, 0.4949905957768471, 0.8727381279202442, 0.7276312261534275]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.18475961309888458, 0.9780601164730803, 0.7850257317913176, 0.8074578747492585]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.2153022694079913, 0.5053473441060105, 0.4337182218093232, 0.9340884899637416]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.6794786080725981, 0.840485451943747, 0.499072778944598, 0.3045148496062992]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.5991263083142513, 0.1574355304937578, 0.8448680547933238, 0.6684979592098583]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.7822789660768364, 0.4190733713168815, 0.973628221955413, 0.9038090091899779]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.8005451473663857, 0.2751748370667708, 0.5200489033543307, 0.13942338920850592]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.23886054286079306, 0.7147440579182092, 0.7702859403170355, 0.970758759190789]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.3932428223243367, 0.43341373543138206, 0.5226002301482271, 0.2705242231758571]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.2169293548019245, 0.5281344336033403, 0.3042184141457957, 0.7028325952142593]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing Gramian (10 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (10 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Checking orthonormality ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing Gramian (10 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (10 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Checking orthonormality ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing Gramian (10 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (10 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Checking orthonormality ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Reorthogonalizing POD modes ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>qr_svd</bold>: Computing QR decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 1 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 2 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 3 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 4 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 5 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 6 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 7 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 8 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   |   <bold>gram_schmidt</bold>: Orthonormalizing vector 9 again<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>qr_svd</bold>: Computing SVD of R ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>qr_svd</bold>: Choosing the number of modes ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 |   <bold>qr_svd</bold>: Computing left singular vectors (10 modes) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:01 <bold>pod</bold>: Checking orthonormality ...<br></div>"
      }
     },
     "ec1630843d1a4e36abc87a70d124be69": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "eea5a94b1fe54db99c759b62e7ad3917": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": null,
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": null
      }
     },
     "f04b7fbb7ab94a2a9d6d3407f8093153": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "f1c6477b3da54fbd91571db371809177": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "f4685d5edbd04d6bb4f08ffa8145142a": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLStyleModel",
      "state": {
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLStyleModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "StyleView",
       "background": null,
       "description_width": "",
       "font_size": null,
       "text_color": null
      }
     },
     "f62a00f3660e4f3db7397198ff2109d5": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "AccordionModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "AccordionModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "AccordionView",
       "box_style": "",
       "children": [
        "IPY_MODEL_502fc4f316764803bf36c4d81d91277d"
       ],
       "layout": "IPY_MODEL_32ae4b1b6cdb400abd66b79c32319d54",
       "selected_index": null,
       "tabbable": null,
       "titles": [
        "Log Output"
       ],
       "tooltip": null
      }
     },
     "f9f12ce3ff7547ff9b321abe936dcdb3": {
      "model_module": "@jupyter-widgets/base",
      "model_module_version": "2.0.0",
      "model_name": "LayoutModel",
      "state": {
       "_model_module": "@jupyter-widgets/base",
       "_model_module_version": "2.0.0",
       "_model_name": "LayoutModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/base",
       "_view_module_version": "2.0.0",
       "_view_name": "LayoutView",
       "align_content": null,
       "align_items": null,
       "align_self": null,
       "border_bottom": null,
       "border_left": null,
       "border_right": null,
       "border_top": null,
       "bottom": null,
       "display": null,
       "flex": null,
       "flex_flow": null,
       "grid_area": null,
       "grid_auto_columns": null,
       "grid_auto_flow": null,
       "grid_auto_rows": null,
       "grid_column": null,
       "grid_gap": null,
       "grid_row": null,
       "grid_template_areas": null,
       "grid_template_columns": null,
       "grid_template_rows": null,
       "height": "16em",
       "justify_content": null,
       "justify_items": null,
       "left": null,
       "margin": null,
       "max_height": null,
       "max_width": null,
       "min_height": null,
       "min_width": null,
       "object_fit": null,
       "object_position": null,
       "order": null,
       "overflow": null,
       "padding": null,
       "right": null,
       "top": null,
       "visibility": null,
       "width": "100%"
      }
     },
     "fcfff0c0dc0b4cfa96e251de94d9a3b1": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_81e44a160a824e069d12ad650e66cf33",
       "placeholder": "​",
       "style": "IPY_MODEL_c5d477cfa7334d68bbfa9e2e5eb268ee",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate gradients of shape functions transformed by reference map ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Calculate all local scalar products between gradients ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>DiffusionOperatorP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Integrate the products of the shape functions on each element<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Determine global dofs ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Boundary treatment ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>L2ProductP1</bold>: Assemble system matrix ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 0.1, 0.1, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 0.1, 0.1, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 0.1, 1.0, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 0.1, 1.0, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 1.0, 0.1, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 1.0, 0.1, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 1.0, 1.0, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [0.1, 1.0, 1.0, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 0.1, 0.1, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 0.1, 0.1, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 0.1, 1.0, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 0.1, 1.0, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 1.0, 0.1, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 1.0, 0.1, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 1.0, 1.0, 0.1]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:22 <bold>StationaryModel</bold>: Computing solution of ThermalBlock((2, 2))_CG for {diffusion: [1.0, 1.0, 1.0, 1.0]} ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 <bold>pod</bold>: Computing SVD ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 |   <bold>method_of_snapshots</bold>: Computing Gramian (16 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 |   <bold>method_of_snapshots</bold>: Computing eigenvalue decomposition ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 |   <bold>method_of_snapshots</bold>: Computing left-singular vectors (16 vectors) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 <bold>pod</bold>: Checking orthonormality ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 <bold>pod</bold>: Reorthogonalizing POD modes ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 <bold>DataDrivenPODReductor</bold>: Computing training data ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 <bold>DataDrivenPODReductor</bold>: Training of machine learning method ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 |   <bold>NeuralNetworkRegressor</bold>: Initializing neural network ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 |   <bold>NeuralNetworkRegressor</bold>: Training of neural network ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 |   |   <bold>multiple_restarts_training</bold>: Performing up to 5 restarts to find the neural network with the lowest loss ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:25 |   |   <bold>multiple_restarts_training</bold>: Training neural network #0 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:26 |   |   |   <bold>train_neural_network</bold>: Starting optimization procedure ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:27 |   |   |   <bold>train_neural_network</bold>: Stopping training process early after 17 epochs with validation loss of 1.986e-03 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:27 |   |   <bold>multiple_restarts_training</bold>: Training neural network #1 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:27 |   |   |   <bold>train_neural_network</bold>: Starting optimization procedure ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:31 |   |   |   <bold>train_neural_network</bold>: Stopping training process early after 59 epochs with validation loss of 6.897e-04 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:31 |   |   <bold>multiple_restarts_training</bold>: Found better neural network (loss of 4.341e-05 instead of 1.399e-04) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:31 |   |   <bold>multiple_restarts_training</bold>: Training neural network #2 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:31 |   |   |   <bold>train_neural_network</bold>: Starting optimization procedure ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:33 |   |   |   <bold>train_neural_network</bold>: Stopping training process early after 16 epochs with validation loss of 2.328e-03 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:33 |   |   <bold>multiple_restarts_training</bold>: Rejecting neural network with loss of 1.808e-04 (instead of 4.341e-05) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:33 |   |   <bold>multiple_restarts_training</bold>: Training neural network #3 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:33 |   |   |   <bold>train_neural_network</bold>: Starting optimization procedure ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:34 |   |   |   <bold>train_neural_network</bold>: Stopping training process early after 16 epochs with validation loss of 1.206e-03 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:34 |   |   <bold>multiple_restarts_training</bold>: Rejecting neural network with loss of 8.749e-05 (instead of 4.341e-05) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:34 |   |   <bold>multiple_restarts_training</bold>: Training neural network #4 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:34 |   |   |   <bold>train_neural_network</bold>: Starting optimization procedure ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:36 |   |   |   <bold>train_neural_network</bold>: Stopping training process early after 26 epochs with validation loss of 1.172e-03 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:36 |   |   <bold>multiple_restarts_training</bold>: Rejecting neural network with loss of 7.390e-05 (instead of 4.341e-05) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:36 |   |   <bold>multiple_restarts_training</bold>: Training neural network #5 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:36 |   |   |   <bold>train_neural_network</bold>: Starting optimization procedure ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 |   |   |   <bold>train_neural_network</bold>: Stopping training process early after 15 epochs with validation loss of 2.116e-03 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 |   |   <bold>multiple_restarts_training</bold>: Rejecting neural network with loss of 1.696e-04 (instead of 4.341e-05) ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 |   |   <bold>multiple_restarts_training</bold>: Found neural network with error of 4.341e-05 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 |   <bold>NeuralNetworkRegressor</bold>: Checking tolerances for error of neural network ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 |   |   <bold>NeuralNetworkRegressor</bold>: Using neural network with smallest validation error ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 |   |   <bold>NeuralNetworkRegressor</bold>: Finished training with a validation loss of 0.000689747795340138 ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>DataDrivenPODReductor</bold>: Building ROM ...<br></div>"
      }
     },
     "fe367748b73e42e2a29506fabdd7f568": {
      "model_module": "@jupyter-widgets/controls",
      "model_module_version": "2.0.0",
      "model_name": "HTMLModel",
      "state": {
       "_dom_classes": [],
       "_model_module": "@jupyter-widgets/controls",
       "_model_module_version": "2.0.0",
       "_model_name": "HTMLModel",
       "_view_count": null,
       "_view_module": "@jupyter-widgets/controls",
       "_view_module_version": "2.0.0",
       "_view_name": "HTMLView",
       "description": "",
       "description_allow_html": false,
       "layout": "IPY_MODEL_9615de66e2f64d19a1830fe2b70132ea",
       "placeholder": "​",
       "style": "IPY_MODEL_71f18e7bf9be4bc581f94abec9a4320a",
       "tabbable": null,
       "tooltip": null,
       "value": "<div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Generating Interpolation Data ...<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Maximum interpolation error with 0 interpolation DOFs: 2.0<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Maximum interpolation error with 1 interpolation DOFs: 0.3848957898544674<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Maximum interpolation error with 2 interpolation DOFs: 0.04339159944554631<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Maximum interpolation error with 3 interpolation DOFs: 0.004645748796267663<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Maximum interpolation error with 4 interpolation DOFs: 0.001784030843927939<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Maximum interpolation error with 5 interpolation DOFs: 6.998089191886491e-05<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Relative error tolerance reached! Stopping extension loop.<br></div><div style=\"font-family:monospace,monospace;line-height:120%\">00:37 <bold>ei_greedy</bold>: Interpolation matrix is not lower triangular with maximum error of 0.0<br></div>"
      }
     }
    },
    "version_major": 2,
    "version_minor": 0
   }
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}
