From 88bdb1c225935b417a679c03f26e6b74a3675571 Mon Sep 17 00:00:00 2001 From: Christina-wg <128186624+Christina-wg@users.noreply.github.com> Date: Wed, 6 Dec 2023 14:44:35 -0700 Subject: [PATCH] Add 2D Vortex example to notebooks This is adding a new 2D vortex example to PyClaw notebooks. This is example 2.2 in the paper https://www.global-sci.org/v1/cicp/issue/FULLPDF/9/807/paper.pdf?code=5PGikBxEljgnVQwsaSy7Hg%3D%3D . It demonstrates how to solve the 2D Euler equations for compressible gas dynamics with periodic boundary conditions and perturbations to the mean flow. This notebook compares the performance between classical Clawpack and SharpClaw WENO solvers. The problem is initiated in the issue https://github.com/clawpack/pyclaw/issues/714. --- notebooks/pyclaw/2D Vortex.ipynb | 36640 +++++++++++++++++++++++++++++ 1 file changed, 36640 insertions(+) create mode 100644 notebooks/pyclaw/2D Vortex.ipynb diff --git a/notebooks/pyclaw/2D Vortex.ipynb b/notebooks/pyclaw/2D Vortex.ipynb new file mode 100644 index 0000000..85f8172 --- /dev/null +++ b/notebooks/pyclaw/2D Vortex.ipynb @@ -0,0 +1,36640 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "d5e9b7c3-a862-4b5e-b1ed-85a34f284a68", + "metadata": {}, + "source": [ + "# Isotropic vortex\n", + "\n", + "In this notebook, we will model an isotropic vortex as a solution to Euler equations in 2D using Clawpack. The model is example 2.2 from paper [\"On the Order of Accuracy and Numerical Performance of Two Classes of Finite Volume WENO Schemes\" by Zhang et al](https://www-cambridge-org.colorado.idm.oclc.org/core/journals/communications-in-computational-physics/article/abs/on-the-order-of-accuracy-and-numerical-performance-of-two-classes-of-finite-volume-weno-schemes/30DE290D74891895A66456B940DF2A5E). The code is based on the previous notebook for PyClaw\n", + "[Quadrants by David Ketcheson](https://github.com/clawpack/apps/blob/master/notebooks/pyclaw/Quadrants.ipynb).\n", + "\n", + "## Set-up \n", + "\n", + "The general Euler equation for compressible flow has the following form:\n", + "$u_t+f(u)_x+g(u)_y=0$ \n", + "with\n", + "$$u=\n", + "\\begin{bmatrix}\n", + "\\rho\\\\ \\rho v\\\\ \\rho w\\\\ E\n", + "\\end{bmatrix},\\quad\n", + "f(u)=\\begin{bmatrix}\n", + "\\rho v\\\\ \\rho v^2+P\\\\ \\rho vw\\\\ v(E+P)\n", + "\\end{bmatrix},\\quad\n", + "g(u)=\\begin{bmatrix}\n", + "\\rho w\\\\ \\rho vw\\\\ \\rho w^2+P\\\\ w(E+P)\n", + "\\end{bmatrix},\n", + "$$\n", + "\n", + "where $\\rho$ is the density, $v$, $w$ are the velocities, $E$ is the total energy and $P$ is the pressure. The boundary conditions are periodic. The following code sets up generic Euler problem." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "6c5e1c31-9311-4bba-b8ba-6c01dc698c70", + "metadata": {}, + "outputs": [], + "source": [ + "#loading necessary packages\n", + "from clawpack import pyclaw\n", + "from clawpack import riemann\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "\n", + "#set the controller\n", + "clawSC = pyclaw.Controller()\n", + "clawSC.tfinal = 10.#final time, chosen that we can observe full period with velocity (1,1)\n", + "clawSC.num_output_times =100#time step\n", + "\n", + "#specify that we use riemann solver for Euler system of 4\n", + "riemann_solver = riemann.euler_4wave_2D\n", + "clawSC.solver = pyclaw.SharpClawSolver2D(riemann_solver)\n", + "clawSC.solver.all_bcs = pyclaw.BC.periodic#fixed,this problem uses periodic BC\n", + "\n", + "grid_size = (50,50)#spatial grid\n", + "domain = pyclaw.Domain( (0.,0.), (10.,10.), grid_size)#fixed domain size" + ] + }, + { + "cell_type": "markdown", + "id": "df588813-a2ae-4a73-b973-1122eaa5d2e6", + "metadata": {}, + "source": [ + "## Vortex evolution\n", + "\n", + "Let $\\epsilon$ be the vortex strength, $T=P/\\rho$ be the temperature, and $S=P/\\rho^\\gamma$ be the enthalpy ($\\gamma$ is the common gas constant fixed at $1.4$). The vortex will be initially positioned at the center $(5,5)$. Radius $r$ is then $\\sqrt{(x-5)^2+(y-5)^2}$. The mean flow values are $\\rho=1,\\,P=1,\\,v=1,\\,w=1$. The vortex evolution can be modeled by introducing perturbations to $v,\\,w,\\,T,\\,S$ (denoted by $\\delta$).\n", + "\n", + "$$\n", + "\\begin{bmatrix}\n", + "\\delta v\\\\ \\delta w\\\\ \\delta T\\\\ \\delta S\n", + "\\end{bmatrix}=\n", + "\\begin{bmatrix}\n", + "-\\frac{\\epsilon}{2\\pi}e^{0.5(1-r^2)}(y-5)^2\\\\\n", + "\\frac{\\epsilon}{2\\pi}e^{0.5(1-r^2)}(x-5)^2\\\\\n", + "-\\frac{(\\gamma-1)\\epsilon^2}{8\\gamma\\pi^2}e^{1-r^2}\\\\\n", + "0\n", + "\\end{bmatrix}.\n", + "$$\n", + "\n", + "Note however that the initial conditions need to be specified for conservative quantities (i.e. entries of $u$). Here we refer to a work done for [the vortex example done for libCEED](https://github.com/CEED/libCEED/blob/main/examples/fluids/qfunctions/eulervortex.h#L92-L107). Using the mean flow values, we get that $T=1+\\delta T$ and $S_0=1$. By the formulae for $T$ and $S$ we get $\\rho=(T/S)^{\\gamma-1}$. The initial conditions are as follows:\n", + "$$\n", + "\\begin{bmatrix}\n", + "\\rho\\\\\n", + "\\rho(1+\\delta v)\\\\\n", + "\\rho(1+\\delta w)\\\\\n", + "0.5\\rho((1+\\delta v)^2+(1+\\delta w)^2)+\\frac{\\rho T}{\\gamma-1}\n", + "\\end{bmatrix}.\n", + "$$\n", + "\n", + "The code below sets up the initial conditions and SharpClaw (via PyClaw) is used to solve this Euler problem." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "02822840-68f7-49f3-a4b8-247c80d824b7", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-12-04 15:01:12,178 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:01:12,198 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:01:12,210 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:01:12,223 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:01:12,233 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:01:12,241 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:01:12,251 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:01:12,259 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:01:12,267 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:01:12,275 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:01:12,282 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:01:12,290 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:01:12,299 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:01:12,307 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:01:12,315 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:01:12,323 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:01:12,331 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:01:12,339 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:01:12,347 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:01:12,355 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:01:12,362 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:01:12,370 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:01:12,377 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:01:12,386 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:01:12,393 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:01:12,403 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:01:12,410 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:01:12,418 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:01:12,425 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:01:12,433 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:01:12,440 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:01:12,448 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:01:12,456 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:01:12,463 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:01:12,471 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:01:12,479 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:01:12,487 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:01:12,494 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:01:12,502 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:01:12,509 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:01:12,516 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:01:12,524 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:01:12,531 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:01:12,539 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:01:12,546 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:01:12,554 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:01:12,561 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:01:12,569 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:01:12,576 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:01:12,585 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:01:12,592 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:01:12,599 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:01:12,607 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:01:12,614 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:01:12,622 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:01:12,629 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:01:12,638 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:01:12,645 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:01:12,654 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:01:12,661 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:01:12,670 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:01:12,677 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:01:12,687 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:01:12,694 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:01:12,703 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:01:12,710 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:01:12,718 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:01:12,725 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:01:12,732 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:01:12,739 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:01:12,747 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:01:12,755 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:01:12,762 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:01:12,770 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:01:12,777 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:01:12,785 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:01:12,792 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:01:12,800 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:01:12,808 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:01:12,815 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:01:12,823 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:01:12,830 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:01:12,839 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:01:12,846 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:01:12,854 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:01:12,861 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:01:12,870 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:01:12,877 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:01:12,884 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:01:12,892 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:01:12,899 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:01:12,907 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:01:12,914 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:01:12,921 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:01:12,928 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:01:12,936 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:01:12,943 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:01:12,951 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:01:12,958 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:01:12,966 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:01:12,975 INFO CLAW: Solution 100 computed for time t=10.000000\n" + ] + } + ], + "source": [ + "#here we find the solution and set the parameters\n", + "clawSC.solution = pyclaw.Solution(clawSC.solver.num_eqn,domain)\n", + "gam = 1.4\n", + "clawSC.solution.problem_data['gamma'] = gam\n", + "\n", + "# Set initial data\n", + "q = clawSC.solution.q\n", + "xx,yy = domain.grid.p_centers\n", + "eps=5 #vortex strength\n", + "xbar=xx-5.0\n", + "ybar=yy-5.0\n", + "r2=xbar**2+ybar**2#radius\n", + "A=eps/(2*np.pi)*np.exp(0.5*(1.0-r2))#velocity perturbation\n", + "dT=-(gam-1.)*eps**2/(8*gam*np.pi**2)*np.exp(1-r2)#temperature perturbation\n", + "S_vor=1#initial enthalpy, no perturbation\n", + "T=1+dT#initial temperature + perturbation\n", + "rho = pow(T / S_vor, 1 / (gam - 1.));#initial density\n", + "P=rho*T#initial pressure\n", + "c_v=1#mean velocity in x\n", + "c_w=1#mean velocity in y\n", + "#conservative quantities go here\n", + "q[0,...] =rho\n", + "q[1,...] = rho*(c_v-A*ybar)\n", + "q[2,...] = rho*(c_w+A*xbar)\n", + "q[3,...] = 0.5*rho*((c_v-A*ybar)**2+(c_w+A*xbar)**2) + P/(gam-1.)\n", + "\n", + "clawSC.keep_copy = True # Keep solution data in memory for plotting\n", + "clawSC.output_format = None # Don't write solution data to file\n", + "clawSC.solver.dt_initial=1.e99\n", + "status = clawSC.run()" + ] + }, + { + "cell_type": "markdown", + "id": "126704e3-cc19-4647-9cb6-6ae7ade40e05", + "metadata": {}, + "source": [ + "## Visualizing results\n", + "\n", + "Next following similar tutorials and examples, we will visialize the results. First, the animation of the evolution of the density is presented. As expected it moves diagonally, however as it evolves and crosses the boundary, we observe that surrounding are the vortex are not constant (when they should be). Ideally, values at $t=0$ and $t=10$ should be the same as one period passes. Hence, in the second part, we plot gradient densities for the initial and final frame." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "b1b89f12-0222-4f5f-a4e8-459cdc5d7b15", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-12-04 15:01:19,713 INFO CLAW: Animation.save using \n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
\n", + " \n", + "
\n", + " \n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "\n" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from clawpack.visclaw import ianimate\n", + "ianimate.ianimate(clawSC)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "3736e0e9-b915-4940-995e-fc05cd53d902", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'Final, t=10')" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "%matplotlib inline\n", + "\n", + "frameSC_init = clawSC.frames[0]\n", + "densitySC_init = frameSC_init.q[0,:,:]\n", + "(vxSC_init,vySC_init) = np.gradient(densitySC_init)\n", + "vsSC_init = np.sqrt(vxSC_init**2 + vySC_init**2)\n", + "x, y = frameSC_init.state.grid.c_centers \n", + "frameSC_fin = clawSC.frames[-1]\n", + "densitySC_fin = frameSC_fin.q[0,:,:]\n", + "(vxSC_fin,vySC_fin) = np.gradient(densitySC_fin)\n", + "vsSC_fin = np.sqrt(vxSC_fin**2 + vySC_fin**2) \n", + "\n", + "figSC,(axSC1, axSC2) = plt.subplots(1, 2)\n", + "figSC.suptitle('Schlieren plots for SharpClaw')\n", + "axSC1.pcolormesh(x, y, vsSC_init, cmap='RdBu')\n", + "axSC1.set_aspect('equal')\n", + "axSC1.set_title('Initial, t=0')\n", + "axSC2.pcolormesh(x, y, vsSC_fin, cmap='RdBu')\n", + "axSC2.set_aspect('equal')\n", + "axSC2.set_title('Final, t=10')" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "a2eb8c20-6037-4095-8327-fd6251d0431f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1.1027390977837972" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#np.linalg.norm(densitySC_init-densitySC_fin,ord='fro')\n", + "np.linalg.norm((vsSC_init-vsSC_fin).flatten(),ord=1)" + ] + }, + { + "cell_type": "markdown", + "id": "f4543062-38b3-49d1-8f4e-86d82402ee8b", + "metadata": {}, + "source": [ + "Now we compare performance with the standard Clawpack implementation." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "49ac19c4-ba15-4c23-bab5-6ce1de0d4451", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-12-04 15:01:44,057 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:01:44,063 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:01:44,069 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:01:44,073 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:01:44,077 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:01:44,080 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:01:44,084 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:01:44,088 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:01:44,091 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:01:44,095 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:01:44,098 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:01:44,103 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:01:44,107 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:01:44,110 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:01:44,112 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:01:44,116 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:01:44,119 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:01:44,122 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:01:44,124 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:01:44,127 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:01:44,129 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:01:44,132 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:01:44,135 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:01:44,139 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:01:44,142 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:01:44,144 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:01:44,147 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:01:44,150 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:01:44,154 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:01:44,156 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:01:44,159 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:01:44,161 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:01:44,163 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:01:44,166 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:01:44,169 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:01:44,172 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:01:44,174 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:01:44,177 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:01:44,179 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:01:44,181 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:01:44,185 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:01:44,187 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:01:44,190 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:01:44,192 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:01:44,194 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:01:44,197 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:01:44,200 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:01:44,203 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:01:44,205 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:01:44,207 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:01:44,210 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:01:44,212 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:01:44,214 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:01:44,217 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:01:44,220 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:01:44,222 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:01:44,224 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:01:44,227 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:01:44,229 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:01:44,231 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:01:44,235 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:01:44,238 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:01:44,240 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:01:44,243 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:01:44,245 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:01:44,247 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:01:44,250 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:01:44,253 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:01:44,256 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:01:44,258 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:01:44,260 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:01:44,263 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:01:44,266 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:01:44,271 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:01:44,274 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:01:44,277 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:01:44,280 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:01:44,285 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:01:44,288 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:01:44,292 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:01:44,294 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:01:44,298 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:01:44,302 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:01:44,305 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:01:44,307 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:01:44,309 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:01:44,312 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:01:44,314 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:01:44,318 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:01:44,321 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:01:44,323 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:01:44,325 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:01:44,327 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:01:44,330 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:01:44,332 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:01:44,336 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:01:44,338 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:01:44,340 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:01:44,343 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:01:44,345 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:01:44,348 INFO CLAW: Solution 100 computed for time t=10.000000\n" + ] + } + ], + "source": [ + "#repeat, the only change is in the solution\n", + "clawCP = pyclaw.Controller()\n", + "clawCP.tfinal = 10.\n", + "clawCP.num_output_times =100\n", + "\n", + "clawCP.solver = pyclaw.ClawSolver2D(riemann_solver)\n", + "clawCP.solver.all_bcs = pyclaw.BC.periodic\n", + "\n", + "#grid_size = (50,50)\n", + "#domain = pyclaw.Domain( (0.,0.), (10.,10.), grid_size)\n", + "\n", + "clawCP.solution = pyclaw.Solution(clawCP.solver.num_eqn,domain)\n", + "gam = 1.4\n", + "clawCP.solution.problem_data['gamma'] = gam\n", + "\n", + "# Set initial data\n", + "q = clawCP.solution.q\n", + "xx,yy = domain.grid.p_centers\n", + "eps=5 #vortex strength\n", + "xbar=xx-5.0\n", + "ybar=yy-5.0\n", + "r2=xbar**2+ybar**2\n", + "A=eps/(2*np.pi)*np.exp(0.5*(1.0-r2))\n", + "dT=-(gam-1.)*eps**2/(8*gam*np.pi**2)*np.exp(1-r2)\n", + "S_vor=1\n", + "T=1+dT\n", + "rho = pow(T / S_vor, 1 / (gam - 1.));\n", + "P=rho*T\n", + "c_v=1\n", + "c_w=1\n", + "# l = xx<0.5; r = xx>=0.5; b = yy<0.5; t = yy>=0.5\n", + "q[0,...] =rho\n", + "q[1,...] = rho*(c_v-A*ybar)\n", + "q[2,...] = rho*(c_w+A*xbar)\n", + "q[3,...] = 0.5*rho*((c_v-A*ybar)**2+(c_w+A*xbar)**2) + P/(gam-1.)\n", + "\n", + "clawCP.keep_copy = True # Keep solution data in memory for plotting\n", + "clawCP.output_format = None # Don't write solution data to file\n", + "clawCP.solver.dt_initial=1.e99\n", + "status = clawCP.run()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "8a0cf91d-d244-4ff0-a01d-790eb34cd54a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-12-04 15:01:48,278 INFO CLAW: Animation.save using \n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
\n", + " \n", + "
\n", + " \n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "\n" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ianimate.ianimate(clawCP)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "4a5ecca3-55ca-47fa-b1e6-103648520968", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'Final, t=10')" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAigAAAGFCAYAAADXZwgoAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/SrBM8AAAACXBIWXMAAA9hAAAPYQGoP6dpAABHAUlEQVR4nO3deXhU1f0/8Pdkm+wh+wIkhIgGBGSVSlhiWbQG6koVwSLV1gUVxCqgsgQLAVS+WlAo/hRogYoLUmorlR0pW1hFQBBZBQKBhCRkX87vD59MOfdcyM1wJ3MnvF/PM8/DuZy598zNzCef3PuZc2xCCAEiIiIiC/Fy9wCIiIiItJigEBERkeUwQSEiIiLLYYJCRERElsMEhYiIiCyHCQoRERFZDhMUIiIishwmKERERGQ5TFCIiIjIcpigkNtt27YN999/PxITE2G32xEbG4s77rgDL730Ur33lZ6ejrZt29bZ7/jx47DZbFiwYIFj24IFC2Cz2XD8+PF6H9eTrF+/HjabDevXr6/3czdv3oxJkybh0qVLpo2noqICTz/9NOLj4+Ht7Y0OHTqYtu9r+ec//4mBAwciNjYWfn5+iIiIQJ8+fbB48WJUVlY6+tlsNkyaNKlBxuROkyZNgs1mw4ULF9w9FCIATFDIzf71r3+he/fuKCwsxIwZM/D111/j3XffRVpaGpYuXdqgY8nIyMCWLVsQHx/foMf1JJs3b0ZmZqapCcqcOXPwl7/8Ba+99ho2bdqEv/3tb6btW48QAsOHD8evf/1r1NTUYObMmVi9ejUWLlyI2267Dc8++yzef/99l46BiOrm4+4B0I1txowZSE5Oxn/+8x/4+Pzv7fjII49gxowZDTqW6OhoREdHm7a/kpISBAYGmra/xuq7775DQEAAnnvuOdP2WVpaioCAAN3/e/PNN7FgwQJkZmZiwoQJ0v8NHDgQr7zyCo4cOWLaWIjIObyCQm518eJFREVFSclJLS8v9e25ZMkS3HHHHQgODkZwcDA6dOiADz/8UOmXnZ2Nnj17IjAwEC1btsS0adNQU1NzzbFc7RbP6tWr0adPH4SGhiIwMBBpaWlYs2aN1Kf28viuXbvw0EMPITw8HCkpKQB+/ov9/fffR4cOHRAQEIDw8HA89NBDOHr0qLSP2ttTzowd+PlWxHPPPYe//OUvuPnmm2G329GmTRt8/PHHdT4XAFasWIE77rgDgYGBCAkJQb9+/bBlyxbpNb788ssAgOTkZNhsNulW0dq1a5Geno7IyEgEBAQgMTERDz74IEpKSq455v/3//4fSktLHfurve1WVlaGcePGITk5GX5+fmjatClGjBihXL1p0aIFBgwYgGXLlqFjx47w9/dHZmam7vEqKysxffp0pKamYvz48bp94uLi0KNHj6uOOTc3F88++yzatGmD4OBgxMTE4Je//CW++eYbqV/Xrl2RkZEhbWvXrh1sNhuys7Md25YtWwabzYZ9+/YB+N97affu3XjggQcQGhqKsLAwDB06FLm5udL+li5div79+yM+Ph4BAQFo3bo1xo4di+LiYmXc27Ztw8CBAxEZGQl/f3+kpKRg1KhRV32dAPD999+jZcuW6NatG86fP3/NvkRmY4JCbnXHHXdg27ZteOGFF7Bt2zbp3r/WhAkTMGTIECQkJGDBggX44osvMGzYMJw4cULql5OTgyFDhmDo0KFYsWIFfvWrX2HcuHFYtGhRvce3aNEi9O/fH6GhoVi4cCE++eQTRERE4K677lKSFAB44IEHcNNNN+HTTz/F3LlzAQBPPfUURo0ahb59+2L58uV4//33sX//fnTv3h3nzp0zdewrVqzAn//8Z0yePBmfffYZkpKSMHjwYHz22WfXfN6SJUtw7733IjQ0FH//+9/x4YcfIj8/H+np6di0aRMA4Mknn8Tzzz8P4Odfqlu2bMGWLVvQqVMnHD9+HBkZGfDz88NHH32ElStXYtq0aQgKCkJFRcVVj7tlyxbcc889CAgIcOwvIyMDQgjcd999eOutt/DYY4/hX//6F0aPHo2FCxfil7/8JcrLy6X97Nq1Cy+//DJeeOEFrFy5Eg8++KDu8Xbs2IG8vDzce++9sNlshs6pVl5eHgBg4sSJ+Ne//oX58+ejZcuWSE9Pl+p6+vbti40bNzre0+fOnXNcLVq1apWj3+rVqxEbG4t27dpJx7n//vtx00034bPPPsOkSZOwfPly3HXXXdJn5IcffsA999yDDz/8ECtXrsSoUaPwySefYODAgdK+/vOf/6Bnz544efIkZs6cia+++gqvv/668v670oYNG9C9e3e0b98e69atQ0xMjFPni8hpgsiNLly4IHr06CEACADC19dXdO/eXWRlZYmioiJHv6NHjwpvb28xZMiQa+6vd+/e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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "frameCP_init = clawCP.frames[0]\n", + "densityCP_init = frameCP_init.q[0,:,:]\n", + "(vxCP_init,vyCP_init) = np.gradient(densityCP_init)\n", + "vsCP_init = np.sqrt(vxCP_init**2 + vyCP_init**2)\n", + "#x, y = frameCP_init.state.grid.c_centers \n", + "frameCP_fin = clawCP.frames[-1]\n", + "densityCP_fin = frameCP_fin.q[0,:,:]\n", + "(vxCP_fin,vyCP_fin) = np.gradient(densityCP_fin)\n", + "vsCP_fin = np.sqrt(vxCP_fin**2 + vyCP_fin**2) \n", + "\n", + "figCP,(axCP1, axCP2) = plt.subplots(1, 2)\n", + "figCP.suptitle('Schlieren plots for Clawpack')\n", + "axCP1.pcolormesh(x, y, vsCP_init, cmap='RdBu')\n", + "axCP1.set_aspect('equal')\n", + "axCP1.set_title('Initial, t=0')\n", + "axCP2.pcolormesh(x, y, vsCP_fin, cmap='RdBu')\n", + "axCP2.set_aspect('equal')\n", + "axCP2.set_title('Final, t=10')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "944a4050-4f82-4b7b-bdc2-90574e30a784", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4.78055596860416" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#np.linalg.norm(densityCP_init-densityCP_fin,ord='fro')\n", + "np.linalg.norm((vsCP_init-vsCP_fin).flatten(),ord=1)" + ] + }, + { + "cell_type": "markdown", + "id": "fe6bac00-cb16-4533-ba1c-b2c94555332f", + "metadata": {}, + "source": [ + "It is interesting to see the discrepancies between SharpClaw and standard Clawpack results. To investigate it further we perform an error analysis. The error would be a matrix norm of difference between the initial and the final density gradients (can also look at other variables). We will vary the spatial grid size, solve using both methods and report the error." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "12d04fa6-fe6a-4213-8848-a9aefcf0132c", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-12-04 15:02:03,014 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:03,019 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:03,023 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:03,027 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:03,030 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:03,034 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:03,037 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:03,040 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:03,043 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:03,047 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:03,050 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:03,053 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:03,056 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:03,059 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:03,061 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:03,064 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:03,066 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:03,069 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:03,072 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:03,074 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:03,076 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:03,078 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:03,080 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:03,083 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:03,087 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:03,089 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:03,091 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:03,093 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:03,095 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:03,097 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:03,098 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:03,102 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:03,104 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:03,106 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:03,108 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:03,110 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:03,112 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:03,114 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:03,116 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:03,119 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:03,122 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:03,123 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:03,125 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:03,127 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:03,129 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:03,131 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:03,133 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:03,136 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:03,138 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:03,140 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:03,142 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:03,143 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:03,145 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:03,147 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:03,149 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:03,151 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:03,154 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:03,156 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:03,158 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:03,160 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:03,161 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:03,163 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:03,166 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:03,168 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:03,170 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:03,172 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:03,174 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:03,176 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:03,178 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:03,179 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:03,181 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:03,184 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:03,187 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:03,189 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:03,191 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:03,193 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:03,195 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:03,197 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:03,199 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:03,201 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:03,204 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:03,206 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:03,208 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:03,210 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:03,212 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:03,214 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:03,216 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:03,219 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:03,222 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:03,224 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:03,227 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:03,229 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:03,232 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:03,235 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:03,239 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:03,241 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:03,244 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:03,246 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:03,250 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:03,254 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:03,257 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:03,261 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:03,265 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:03,269 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:03,272 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:03,275 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:03,278 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:03,281 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:03,285 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:03,288 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:03,291 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:03,294 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:03,297 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:03,301 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:03,304 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:03,307 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:03,310 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:03,313 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:03,316 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:03,319 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:03,322 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:03,325 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:03,327 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:03,331 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:03,334 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:03,337 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:03,340 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:03,343 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:03,346 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:03,349 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:03,351 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:03,354 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:03,356 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:03,359 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:03,362 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:03,364 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:03,367 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:03,371 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:03,373 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:03,376 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:03,379 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:03,382 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:03,385 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:03,387 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:03,390 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:03,392 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:03,395 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:03,398 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:03,401 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:03,404 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:03,406 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:03,409 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:03,412 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:03,416 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:03,418 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:03,421 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:03,423 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:03,426 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:03,428 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:03,431 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:03,433 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:03,436 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:03,439 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:03,441 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:03,444 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:03,446 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:03,449 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:03,452 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:03,454 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:03,457 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:03,460 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:03,462 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:03,465 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:03,469 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:03,471 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:03,474 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:03,478 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:03,484 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:03,505 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:03,513 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:03,517 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:03,519 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:03,528 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:03,534 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:03,537 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:03,543 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:03,545 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:03,548 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:03,552 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:03,555 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:03,558 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:03,561 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:03,564 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:03,566 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:03,569 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:03,571 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:03,574 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:03,578 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:03,582 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:03,584 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:03,587 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:03,589 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:03,592 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:03,596 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:03,600 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:03,603 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:03,607 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:03,612 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:03,616 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:03,620 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:03,624 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:03,628 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:03,631 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:03,636 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:03,640 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:03,644 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:03,648 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:03,652 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:03,656 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:03,659 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:03,664 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:03,668 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:03,672 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:03,676 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:03,680 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:03,685 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:03,689 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:03,692 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:03,696 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:03,700 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:03,704 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:03,708 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:03,712 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:03,716 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:03,720 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:03,724 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:03,727 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:03,732 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:03,736 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:03,740 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:03,743 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:03,748 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:03,751 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:03,755 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:03,759 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:03,763 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:03,767 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:03,771 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:03,775 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:03,779 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:03,784 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:03,787 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:03,791 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:03,795 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:03,799 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:03,803 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:03,806 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:03,810 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:03,814 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:03,818 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:03,822 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:03,826 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:03,830 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:03,834 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:03,838 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:03,841 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:03,846 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:03,850 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:03,854 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:03,858 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:03,862 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:03,867 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:03,871 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:03,875 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:03,879 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:03,883 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:03,888 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:03,891 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:03,895 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:03,900 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:03,904 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:03,907 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:03,911 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:03,915 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:03,919 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:03,923 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:03,927 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:03,931 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:03,935 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:03,938 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:03,942 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:03,946 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:03,950 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:03,954 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:03,958 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:03,962 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:03,965 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:03,970 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:03,974 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:03,978 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:03,982 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:03,986 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:03,990 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:03,993 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:03,998 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:04,004 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:04,009 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:04,015 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:04,020 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:04,026 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:04,031 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:04,037 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:04,042 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:04,048 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:04,055 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:04,060 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:04,066 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:04,071 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:04,077 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:04,082 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:04,088 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:04,093 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:04,098 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:04,104 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:04,110 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:04,115 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:04,121 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:04,126 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:04,131 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:04,136 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:04,142 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:04,147 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:04,152 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:04,158 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:04,163 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:04,169 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:04,174 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:04,180 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:04,185 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:04,191 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:04,196 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:04,202 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:04,208 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:04,213 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:04,220 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:04,225 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:04,231 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:04,236 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:04,242 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:04,247 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:04,253 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:04,258 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:04,263 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:04,269 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:04,274 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:04,279 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:04,285 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:04,290 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:04,296 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:04,302 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:04,307 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:04,312 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:04,318 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:04,323 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:04,328 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:04,334 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:04,339 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:04,345 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:04,350 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:04,356 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:04,361 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:04,367 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:04,372 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:04,377 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:04,383 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:04,388 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:04,394 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:04,399 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:04,404 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:04,410 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:04,415 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:04,421 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:04,427 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:04,432 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:04,438 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:04,443 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:04,448 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:04,454 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:04,460 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:04,465 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:04,471 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:04,477 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:04,482 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:04,487 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:04,493 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:04,498 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:04,504 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:04,510 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:04,515 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:04,521 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:04,526 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:04,532 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:04,539 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:04,544 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:04,546 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:04,554 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:04,561 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:04,568 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:04,576 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:04,583 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:04,590 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:04,597 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:04,605 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:04,612 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:04,619 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:04,626 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:04,634 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:04,642 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:04,650 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:04,657 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:04,664 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:04,671 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:04,678 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:04,686 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:04,693 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:04,700 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:04,707 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:04,714 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:04,722 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:04,729 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:04,736 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:04,743 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:04,751 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:04,758 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:04,765 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:04,773 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:04,781 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:04,789 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:04,796 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:04,804 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:04,812 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:04,819 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:04,826 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:04,834 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:04,841 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:04,848 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:04,856 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:04,864 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:04,871 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:04,879 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:04,886 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:04,893 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:04,901 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:04,908 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:04,916 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:04,924 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:04,932 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:04,940 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:04,947 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:04,956 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:04,964 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:04,972 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:04,979 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:04,987 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:04,994 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:05,002 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:05,010 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:05,017 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:05,025 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:05,032 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:05,039 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:05,047 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:05,055 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:05,062 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:05,069 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:05,083 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:05,096 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:05,110 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:05,118 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:05,126 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:05,134 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:05,143 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:05,150 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:05,158 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:05,165 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:05,172 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:05,180 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:05,187 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:05,201 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:05,209 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:05,217 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:05,225 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:05,232 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:05,240 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:05,247 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:05,254 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:05,262 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:05,269 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:05,276 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:05,284 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:05,291 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:05,299 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:05,306 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:05,313 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:05,321 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:05,323 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:05,332 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:05,342 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:05,352 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:05,361 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:05,371 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:05,381 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:05,391 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:05,401 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:05,410 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:05,420 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:05,430 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:05,439 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:05,449 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:05,458 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:05,468 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:05,477 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:05,487 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:05,496 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:05,506 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:05,516 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:05,525 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:05,535 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:05,544 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:05,553 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:05,563 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:05,573 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:05,582 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:05,592 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:05,601 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:05,611 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:05,620 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:05,630 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:05,639 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:05,649 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:05,658 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:05,668 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:05,677 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:05,687 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:05,696 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:05,707 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:05,716 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:05,726 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:05,735 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:05,745 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:05,754 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:05,764 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:05,774 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:05,783 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:05,793 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:05,802 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:05,812 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:05,821 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:05,831 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:05,840 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:05,849 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:05,859 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:05,868 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:05,878 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:05,887 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:05,897 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:05,906 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:05,915 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:05,925 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:05,934 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:05,944 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:05,953 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:05,963 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:05,972 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:05,982 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:05,991 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:06,000 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:06,010 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:06,020 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:06,029 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:06,039 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:06,049 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:06,058 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:06,068 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:06,078 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:06,087 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:06,097 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:06,107 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:06,116 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:06,125 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:06,135 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:06,144 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:06,154 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:06,163 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:06,173 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:06,182 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:06,192 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:06,202 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:06,211 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:06,221 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:06,230 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:06,240 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:06,250 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:06,260 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:06,271 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:06,280 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:06,284 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:06,297 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:06,309 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:06,322 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:06,335 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:06,347 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:06,359 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:06,372 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:06,384 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:06,396 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:06,409 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:06,422 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:06,435 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:06,447 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:06,460 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:06,473 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:06,486 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:06,498 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:06,511 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:06,523 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:06,536 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:06,548 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:06,560 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:06,572 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:06,584 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:06,596 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:06,608 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:06,620 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:06,632 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:06,644 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:06,678 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:06,700 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:06,713 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:06,726 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:06,738 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:06,751 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:06,763 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:06,775 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:06,788 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:06,800 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:06,812 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:06,824 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:06,836 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:06,849 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:06,861 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:06,873 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:06,885 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:06,897 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:06,909 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:06,921 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:06,933 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:06,946 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:06,958 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:06,971 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:06,983 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:06,995 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:07,007 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:07,020 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:07,032 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:07,044 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:07,056 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:07,068 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:07,080 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:07,093 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:07,105 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:07,117 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:07,130 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:07,143 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:07,155 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:07,167 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:07,179 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:07,192 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:07,205 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:07,217 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:07,230 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:07,242 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:07,254 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:07,267 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:07,279 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:07,292 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:07,304 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:07,316 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:07,329 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:07,342 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:07,354 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:07,367 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:07,379 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:07,391 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:07,403 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:07,415 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:07,428 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:07,441 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:07,454 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:07,467 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:07,479 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:07,492 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:07,504 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:07,517 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:07,529 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:07,542 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:07,554 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:07,557 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:07,573 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:07,589 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:07,604 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:07,619 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:07,635 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:07,650 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:07,665 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:07,680 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:07,696 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:07,712 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:07,729 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:07,745 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:07,761 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:07,777 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:07,794 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:07,810 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:07,826 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:07,841 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:07,856 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:07,871 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:07,887 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:07,902 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:07,917 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:07,933 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:07,949 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:07,964 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:07,979 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:07,994 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:08,010 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:08,025 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:08,040 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:08,056 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:08,071 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:08,087 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:08,102 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:08,117 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:08,132 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:08,147 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:08,163 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:08,179 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:08,195 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:08,210 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:08,225 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:08,240 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:08,255 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:08,270 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:08,285 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:08,301 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:08,317 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:08,332 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:08,347 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:08,363 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:08,378 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:08,394 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:08,411 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:08,427 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:08,442 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:08,459 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:08,475 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:08,491 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:08,506 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:08,525 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:08,560 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:08,582 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:08,598 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:08,615 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:08,631 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:08,646 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:08,662 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:08,679 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:08,695 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:08,711 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:08,728 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:08,746 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:08,763 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:08,779 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:08,795 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:08,810 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:08,826 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:08,841 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:08,857 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:08,873 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:08,888 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:08,903 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:08,918 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:08,934 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:08,949 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:08,964 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:08,979 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:08,995 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:09,011 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:09,026 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:09,042 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:09,057 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:09,072 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:09,087 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:09,103 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:09,120 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:09,136 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:09,152 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:09,155 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:09,206 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:09,241 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:09,277 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:09,312 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:09,348 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:09,383 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:09,418 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:09,453 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:09,489 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:09,524 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:09,559 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:09,594 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:09,629 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:09,664 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:09,698 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:09,733 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:09,768 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:09,804 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:09,839 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:09,873 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:09,908 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:09,942 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:09,976 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:10,011 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:10,045 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:10,079 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:10,114 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:10,148 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:10,184 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:10,220 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:10,255 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:10,290 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:10,326 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:10,360 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:10,394 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:10,429 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:10,464 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:10,499 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:10,535 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:10,570 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:10,605 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:10,640 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:10,675 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:10,711 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:10,747 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:10,782 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:10,817 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:10,851 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:10,886 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:10,920 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:10,954 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:10,989 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:11,023 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:11,057 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:11,092 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:11,126 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:11,160 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:11,195 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:11,230 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:11,264 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:11,300 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:11,335 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:11,371 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:11,406 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:11,442 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:11,477 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:11,513 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:11,548 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:11,583 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:11,618 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:11,653 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:11,689 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:11,731 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:11,776 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:11,812 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:11,850 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:11,885 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:11,920 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:11,955 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:11,990 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:12,027 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:12,063 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:12,098 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:12,134 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:12,172 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:12,208 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:12,245 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:12,283 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:12,320 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:12,355 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:12,391 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:12,427 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:12,463 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:12,500 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:12,536 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:12,571 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:12,607 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:12,642 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:12,677 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:12,712 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:12,715 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:12,776 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:12,818 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:12,860 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:12,902 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:12,944 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:12,986 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:13,028 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:13,070 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:13,112 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:13,154 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:13,195 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:13,237 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:13,278 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:13,319 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:13,361 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:13,402 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:13,443 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:13,484 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:13,525 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:13,566 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:13,608 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:13,650 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:13,692 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:13,733 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:13,775 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:13,816 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:13,858 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:13,899 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:13,941 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:13,982 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:14,024 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:14,065 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:14,107 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:14,148 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:14,190 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:14,232 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:14,274 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:14,316 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:14,358 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:14,400 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:14,443 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:14,485 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:14,527 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:14,570 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:14,614 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:14,657 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:14,698 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:14,751 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:14,803 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:14,846 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:14,888 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:14,931 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:14,974 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:15,017 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:15,059 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:15,101 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:15,143 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:15,185 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:15,228 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:15,269 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:15,311 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:15,353 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:15,395 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:15,436 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:15,478 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:15,520 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:15,561 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:15,603 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:15,644 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:15,686 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:15,727 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:15,769 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:15,810 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:15,852 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:15,893 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:15,935 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:15,976 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:16,018 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:16,059 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:16,101 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:16,142 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:16,184 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:16,226 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:16,268 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:16,309 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:16,351 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:16,393 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:16,437 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:16,478 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:16,520 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:16,562 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:16,604 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:16,645 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:16,687 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:16,728 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:16,771 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:16,813 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:16,855 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:16,898 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:16,940 INFO CLAW: Solution 100 computed for time t=10.000000\n" + ] + } + ], + "source": [ + "errSC=[0]*10\n", + "for i in range (1,11):\n", + " clawSC = pyclaw.Controller()\n", + " clawSC.tfinal = 10.\n", + " clawSC.num_output_times =100\n", + "\n", + " clawSC.solver = pyclaw.SharpClawSolver2D(riemann_solver)\n", + " clawSC.solver.all_bcs = pyclaw.BC.periodic\n", + "\n", + " grid_size = (i*10,i*10)\n", + " domain = pyclaw.Domain( (0.,0.), (10.,10.), grid_size)\n", + "\n", + " clawSC.solution = pyclaw.Solution(clawSC.solver.num_eqn,domain)\n", + " gam = 1.4\n", + " clawSC.solution.problem_data['gamma'] = gam\n", + "\n", + "# Set initial data\n", + " q = clawSC.solution.q\n", + " xx,yy = domain.grid.p_centers\n", + " eps=5 #vortex strength\n", + " xbar=xx-5.0\n", + " ybar=yy-5.0\n", + " r2=xbar**2+ybar**2\n", + " A=eps/(2*np.pi)*np.exp(0.5*(1.0-r2))\n", + " dT=-(gam-1.)*eps**2/(8*gam*np.pi**2)*np.exp(1-r2)\n", + " S_vor=1\n", + " T=1+dT\n", + " rho = pow(T / S_vor, 1 / (gam - 1.));\n", + " P=rho*T\n", + " c_v=1\n", + " c_w=1\n", + "\n", + " q[0,...] =rho\n", + " q[1,...] = rho*(c_v-A*ybar)\n", + " q[2,...] = rho*(c_w+A*xbar)\n", + " q[3,...] = 0.5*rho*((c_v-A*ybar)**2+(c_w+A*xbar)**2) + P/(gam-1.)\n", + "\n", + " clawSC.keep_copy = True # Keep solution data in memory for plotting\n", + " clawSC.output_format = None # Don't write solution data to file\n", + " clawSC.solver.dt_initial=1.e99\n", + " status = clawSC.run()\n", + " frameSC_init = clawSC.frames[0]\n", + " densitySC_init = frameSC_init.q[0,:,:]\n", + " (vxSC_init,vySC_init) = np.gradient(densitySC_init)\n", + " vsSC_init = np.sqrt(vxSC_init**2 + vySC_init**2)\n", + " frameSC_fin = clawSC.frames[-1]\n", + " densitySC_fin = frameSC_fin.q[0,:,:]\n", + " (vxSC_fin,vySC_fin) = np.gradient(densitySC_fin)\n", + " vsSC_fin = np.sqrt(vxSC_fin**2 + vySC_fin**2) \n", + " errSC[i-1]=np.linalg.norm((vsSC_init-vsSC_fin).flatten(),ord=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "2f2b8f83-fdfa-4c8d-8332-dbd18e00b3f3", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-12-04 15:02:22,241 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:22,243 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:22,244 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:22,245 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:22,248 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:22,250 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:22,252 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:22,253 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:22,255 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:22,257 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:22,258 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:22,259 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:22,261 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:22,262 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:22,265 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:22,266 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:22,268 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:22,271 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:22,272 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:22,273 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:22,275 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:22,276 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:22,277 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:22,278 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:22,279 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:22,281 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:22,282 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:22,284 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:22,286 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:22,287 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:22,288 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:22,289 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:22,290 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:22,291 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:22,292 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:22,293 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:22,294 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:22,296 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:22,297 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:22,298 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:22,299 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:22,301 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:22,302 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:22,304 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:22,305 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:22,305 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:22,306 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:22,307 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:22,308 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:22,309 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:22,310 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:22,311 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:22,312 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:22,313 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:22,314 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:22,315 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:22,316 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:22,318 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:22,319 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:22,321 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:22,322 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:22,323 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:22,324 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:22,325 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:22,326 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:22,327 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:22,328 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:22,329 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:22,331 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:22,332 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:22,334 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:22,336 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:22,338 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:22,340 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:22,341 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:22,342 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:22,343 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:22,344 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:22,345 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:22,346 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:22,347 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:22,348 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:22,349 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:22,350 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:22,351 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:22,352 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:22,353 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:22,354 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:22,355 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:22,356 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:22,357 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:22,358 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:22,359 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:22,360 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:22,360 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:22,361 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:22,362 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:22,363 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:22,364 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:22,365 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:22,366 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:22,368 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:22,369 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:22,370 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:22,371 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:22,371 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:22,372 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:22,373 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:22,374 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:22,375 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:22,376 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:22,377 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:22,379 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:22,380 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:22,381 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:22,382 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:22,383 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:22,384 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:22,385 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:22,386 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:22,387 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:22,387 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:22,388 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:22,389 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:22,390 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:22,391 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:22,392 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:22,393 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:22,394 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:22,395 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:22,396 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:22,396 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:22,397 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:22,398 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:22,399 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:22,400 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:22,401 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:22,403 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:22,404 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:22,405 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:22,406 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:22,407 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:22,409 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:22,410 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:22,411 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:22,412 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:22,413 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:22,414 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:22,415 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:22,416 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:22,417 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:22,418 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:22,420 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:22,421 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:22,422 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:22,423 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:22,424 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:22,424 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:22,425 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:22,426 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:22,427 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:22,428 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:22,429 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:22,430 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:22,431 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:22,432 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:22,433 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:22,434 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:22,435 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:22,436 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:22,437 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:22,438 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:22,439 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:22,440 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:22,441 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:22,441 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:22,442 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:22,443 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:22,444 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:22,445 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:22,446 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:22,448 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:22,449 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:22,451 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:22,453 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:22,454 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:22,455 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:22,456 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:22,457 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:22,458 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:22,459 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:22,460 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:22,463 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:22,464 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:22,466 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:22,467 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:22,468 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:22,469 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:22,470 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:22,471 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:22,472 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:22,473 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:22,475 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:22,477 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:22,478 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:22,479 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:22,480 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:22,481 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:22,483 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:22,484 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:22,485 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:22,486 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:22,487 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:22,488 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:22,489 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:22,490 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:22,491 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:22,492 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:22,493 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:22,494 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:22,495 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:22,496 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:22,497 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:22,498 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:22,499 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:22,500 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:22,501 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:22,503 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:22,504 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:22,505 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:22,506 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:22,507 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:22,508 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:22,509 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:22,510 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:22,511 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:22,512 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:22,513 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:22,514 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:22,515 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:22,516 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:22,517 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:22,518 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:22,519 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:22,520 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:22,521 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:22,522 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:22,523 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:22,524 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:22,525 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:22,526 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:22,528 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:22,528 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:22,529 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:22,531 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:22,531 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:22,532 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:22,533 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:22,535 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:22,536 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:22,537 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:22,538 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:22,539 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:22,540 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:22,541 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:22,542 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:22,543 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:22,545 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:22,546 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:22,547 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:22,548 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:22,549 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:22,550 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:22,551 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:22,552 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:22,554 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:22,555 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:22,556 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:22,557 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:22,558 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:22,559 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:22,560 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:22,562 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:22,563 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:22,564 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:22,566 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:22,567 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:22,568 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:22,569 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:22,570 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:22,571 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:22,572 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:22,573 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:22,574 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:22,576 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:22,577 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:22,578 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:22,579 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:22,580 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:22,582 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:22,583 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:22,584 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:22,585 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:22,587 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:22,589 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:22,592 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:22,593 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:22,595 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:22,597 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:22,599 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:22,601 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:22,603 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:22,604 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:22,606 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:22,608 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:22,610 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:22,612 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:22,615 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:22,616 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:22,618 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:22,620 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:22,622 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:22,624 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:22,626 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:22,628 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:22,630 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:22,631 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:22,633 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:22,635 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:22,637 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:22,638 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:22,640 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:22,642 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:22,644 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:22,646 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:22,648 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:22,649 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:22,651 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:22,653 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:22,655 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:22,657 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:22,660 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:22,662 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:22,664 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:22,666 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:22,669 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:22,671 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:22,674 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:22,676 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:22,679 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:22,681 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:22,684 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:22,686 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:22,689 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:22,691 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:22,694 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:22,697 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:22,700 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:22,703 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:22,706 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:22,708 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:22,711 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:22,714 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:22,719 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:22,723 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:22,725 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:22,728 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:22,732 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:22,738 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:22,742 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:22,746 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:22,750 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:22,754 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:22,758 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:22,760 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:22,763 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:22,766 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:22,768 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:22,770 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:22,772 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:22,774 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:22,775 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:22,777 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:22,779 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:22,781 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:22,783 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:22,785 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:22,787 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:22,788 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:22,790 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:22,792 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:22,794 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:22,796 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:22,798 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:22,800 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:22,802 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:22,804 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:22,806 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:22,809 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:22,811 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:22,813 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:22,814 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:22,816 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:22,818 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:22,820 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:22,823 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:22,826 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:22,828 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:22,830 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:22,833 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:22,835 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:22,837 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:22,839 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:22,841 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:22,844 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:22,846 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:22,848 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:22,850 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:22,853 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:22,855 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:22,857 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:22,859 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:22,862 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:22,864 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:22,867 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:22,869 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:22,871 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:22,874 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:22,876 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:22,879 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:22,881 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:22,883 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:22,886 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:22,888 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:22,890 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:22,893 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:22,895 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:22,897 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:22,900 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:22,902 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:22,904 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:22,907 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:22,909 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:22,911 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:22,914 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:22,916 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:22,919 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:22,921 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:22,923 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:22,926 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:22,928 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:22,931 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:22,933 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:22,935 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:22,938 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:22,940 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:22,943 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:22,946 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:22,948 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:22,951 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:22,967 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:22,972 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:22,976 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:22,982 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:22,988 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:22,992 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:22,995 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:22,997 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:22,999 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:23,002 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:23,004 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:23,007 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:23,009 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:23,012 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:23,015 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:23,017 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:23,020 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:23,026 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:23,032 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:23,034 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:23,037 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:23,039 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:23,042 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:23,044 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:23,046 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:23,049 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:23,051 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:23,054 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:23,056 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:23,059 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:23,062 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:23,065 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:23,067 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:23,070 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:23,072 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:23,075 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:23,077 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:23,080 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:23,082 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:23,084 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:23,087 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:23,090 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:23,092 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:23,095 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:23,098 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:23,101 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:23,105 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:23,108 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:23,110 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:23,114 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:23,117 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:23,121 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:23,124 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:23,127 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:23,131 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:23,134 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:23,138 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:23,141 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:23,145 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:23,148 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:23,151 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:23,155 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:23,158 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:23,162 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:23,165 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:23,168 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:23,171 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:23,174 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:23,178 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:23,181 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:23,184 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:23,188 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:23,191 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:23,194 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:23,198 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:23,201 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:23,204 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:23,207 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:23,211 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:23,214 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:23,218 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:23,221 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:23,225 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:23,227 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:23,231 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:23,234 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:23,237 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:23,240 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:23,244 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:23,247 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:23,250 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:23,253 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:23,256 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:23,259 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:23,262 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:23,265 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:23,268 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:23,272 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:23,275 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:23,279 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:23,283 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:23,286 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:23,289 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:23,293 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:23,297 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:23,301 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:23,304 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:23,307 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:23,310 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:23,314 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:23,317 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:23,320 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:23,323 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:23,326 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:23,329 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:23,332 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:23,336 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:23,339 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:23,342 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:23,346 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:23,349 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:23,352 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:23,355 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:23,358 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:23,361 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:23,365 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:23,368 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:23,371 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:23,374 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:23,378 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:23,381 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:23,385 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:23,389 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:23,392 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:23,396 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:23,399 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:23,402 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:23,405 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:23,408 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:23,411 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:23,414 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:23,417 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:23,420 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:23,423 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:23,426 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:23,429 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:23,431 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:23,437 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:23,442 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:23,447 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:23,451 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:23,456 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:23,461 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:23,465 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:23,470 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:23,475 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:23,480 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:23,484 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:23,489 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:23,494 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:23,499 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:23,504 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:23,509 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:23,518 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:23,542 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:23,568 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:23,577 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:23,584 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:23,589 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:23,593 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:23,599 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:23,604 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:23,609 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:23,613 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:23,618 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:23,623 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:23,628 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:23,633 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:23,638 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:23,643 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:23,649 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:23,653 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:23,658 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:23,664 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:23,670 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:23,675 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:23,680 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:23,687 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:23,694 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:23,701 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:23,720 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:23,727 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:23,733 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:23,739 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:23,743 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:23,750 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:23,755 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:23,760 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:23,765 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:23,771 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:23,776 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:23,781 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:23,787 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:23,792 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:23,797 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:23,802 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:23,807 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:23,813 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:23,818 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:23,823 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:23,828 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:23,834 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:23,839 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:23,844 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:23,850 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:23,855 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:23,860 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:23,865 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:23,870 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:23,875 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:23,880 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:23,885 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:23,891 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:23,896 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:23,901 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:23,906 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:23,911 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:23,917 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:23,922 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:23,928 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:23,933 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:23,938 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:23,943 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:23,948 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:23,953 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:23,958 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:23,970 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:23,976 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:23,981 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:23,986 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:23,991 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:23,996 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:24,001 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:24,006 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:24,011 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:24,016 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:24,021 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:24,024 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:24,031 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:24,037 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:24,043 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:24,049 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:24,055 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:24,060 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:24,066 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:24,073 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:24,079 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:24,085 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:24,092 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:24,098 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:24,104 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:24,110 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:24,115 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:24,121 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:24,127 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:24,133 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:24,139 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:24,144 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:24,150 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:24,156 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:24,162 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:24,168 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:24,175 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:24,181 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:24,186 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:24,192 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:24,198 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:24,204 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:24,210 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:24,216 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:24,221 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:24,227 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:24,233 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:24,239 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:24,245 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:24,250 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:24,257 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:24,263 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:24,270 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:24,276 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:24,282 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:24,288 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:24,294 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:24,300 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:24,306 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:24,312 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:24,318 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:24,324 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:24,330 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:24,335 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:24,341 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:24,347 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:24,352 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:24,358 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:24,364 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:24,370 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:24,376 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:24,382 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:24,388 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:24,394 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:24,400 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:24,406 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:24,412 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:24,418 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:24,424 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:24,430 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:24,436 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:24,442 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:24,448 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:24,454 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:24,460 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:24,466 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:24,472 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:24,478 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:24,484 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:24,490 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:24,496 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:24,502 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:24,508 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:24,514 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:24,521 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:24,527 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:24,533 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:24,539 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:24,545 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:24,551 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:24,557 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:24,563 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:24,574 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:24,588 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:24,598 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:24,612 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:24,618 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:24,624 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:24,630 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:24,636 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:24,642 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:24,648 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:24,651 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:24,660 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:24,668 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:24,678 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:24,689 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:24,697 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:24,704 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:24,711 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:24,718 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:24,725 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:24,733 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:24,740 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:24,748 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:24,755 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:24,762 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:24,769 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:24,777 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:24,784 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:24,791 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:24,798 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:24,805 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:24,812 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:24,819 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:24,826 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:24,834 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:24,841 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:24,848 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:24,856 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:24,863 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:24,870 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:24,877 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:24,884 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:24,891 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:24,899 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:24,906 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:24,914 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:24,921 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:24,928 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:24,935 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:24,942 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:24,949 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:24,956 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:24,964 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:24,972 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:24,979 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:24,986 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:24,993 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:25,000 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:25,007 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:25,014 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:25,021 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:25,029 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:25,036 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:25,042 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:25,050 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:25,057 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:25,064 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:25,072 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:25,079 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:25,086 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:25,093 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:25,101 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:25,108 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:25,115 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:25,123 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:25,130 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:25,137 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:25,145 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:25,153 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:25,160 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:25,167 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:25,174 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:25,181 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:25,188 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:25,195 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:25,202 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:25,209 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:25,216 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:25,223 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:25,230 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:25,238 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:25,245 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:25,252 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:25,259 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:25,267 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:25,274 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:25,291 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:25,309 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:25,319 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:25,326 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:25,334 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:25,341 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:25,348 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:25,356 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:25,363 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:25,370 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:25,377 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:25,384 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:25,391 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:25,398 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:25,406 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:25,409 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:25,422 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:25,434 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:25,445 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:25,456 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:25,467 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:25,478 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:25,489 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:25,499 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:25,511 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:25,522 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:25,533 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:25,544 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:25,561 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:25,572 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:25,582 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:25,593 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:25,604 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:25,617 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:25,629 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:25,641 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:25,653 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:25,664 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:25,674 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:25,685 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:25,696 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:25,707 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:25,718 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:25,728 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:25,739 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:25,750 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:25,761 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:25,772 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:25,783 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:25,794 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:25,804 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:25,815 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:25,826 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:25,837 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:25,848 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:25,859 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:25,869 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:25,880 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:25,891 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:25,902 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:25,913 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:25,924 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:25,935 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:25,946 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:25,957 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:25,968 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:25,979 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:25,990 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:26,001 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:26,012 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:26,023 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:26,034 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:26,044 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:26,055 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:26,065 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:26,076 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:26,087 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:26,098 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:26,108 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:26,119 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:26,130 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:26,140 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:26,151 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:26,162 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:26,175 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:26,189 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:26,204 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:26,215 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:26,226 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:26,237 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:26,248 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:26,258 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:26,269 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:26,279 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:26,290 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:26,301 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:26,311 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:26,322 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:26,333 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:26,343 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:26,354 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:26,365 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:26,376 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:26,387 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:26,398 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:26,409 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:26,428 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:26,440 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:26,452 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:26,467 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:26,480 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:26,492 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:26,503 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:26,514 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:26,525 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:26,536 INFO CLAW: Solution 100 computed for time t=10.000000\n" + ] + } + ], + "source": [ + "errCP=[0]*10\n", + "for i in range (1,11):\n", + " clawCP = pyclaw.Controller()\n", + " clawCP.tfinal = 10.\n", + " clawCP.num_output_times =100\n", + "\n", + " clawCP.solver = pyclaw.ClawSolver2D(riemann_solver)\n", + " clawCP.solver.all_bcs = pyclaw.BC.periodic\n", + "\n", + " grid_size = (i*10,i*10)\n", + " domain = pyclaw.Domain( (0.,0.), (10.,10.), grid_size)\n", + "\n", + " clawCP.solution = pyclaw.Solution(clawCP.solver.num_eqn,domain)\n", + " gam = 1.4\n", + " clawCP.solution.problem_data['gamma'] = gam\n", + "\n", + "# Set initial data\n", + " q = clawCP.solution.q\n", + " xx,yy = domain.grid.p_centers\n", + " eps=5 #vortex strength\n", + " xbar=xx-5.0\n", + " ybar=yy-5.0\n", + " r2=xbar**2+ybar**2\n", + " A=eps/(2*np.pi)*np.exp(0.5*(1.0-r2))\n", + " dT=-(gam-1.)*eps**2/(8*gam*np.pi**2)*np.exp(1-r2)\n", + " S_vor=1\n", + " T=1+dT\n", + " rho = pow(T / S_vor, 1 / (gam - 1.));\n", + " P=rho*T\n", + " c_v=1\n", + " c_w=1\n", + "\n", + " q[0,...] =rho\n", + " q[1,...] = rho*(c_v-A*ybar)\n", + " q[2,...] = rho*(c_w+A*xbar)\n", + " q[3,...] = 0.5*rho*((c_v-A*ybar)**2+(c_w+A*xbar)**2) + P/(gam-1.)\n", + "\n", + " clawCP.keep_copy = True # Keep solution data in memory for plotting\n", + " clawCP.output_format = None # Don't write solution data to file\n", + " clawCP.solver.dt_initial=1.e99\n", + " status = clawCP.run()\n", + " frameCP_init = clawCP.frames[0]\n", + " densityCP_init = frameCP_init.q[0,:,:]\n", + " (vxCP_init,vyCP_init) = np.gradient(densityCP_init)\n", + " vsCP_init = np.sqrt(vxCP_init**2 + vyCP_init**2)\n", + " frameCP_fin = clawCP.frames[-1]\n", + " densityCP_fin = frameCP_fin.q[0,:,:]\n", + " (vxCP_fin,vyCP_fin) = np.gradient(densityCP_fin)\n", + " vsCP_fin = np.sqrt(vxCP_fin**2 + vyCP_fin**2) \n", + " errCP[i-1]=np.linalg.norm((vsCP_init-vsCP_fin).flatten(),ord=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "a7eee057-92f9-4a20-9a91-49e5ab844ec8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ns=range(10,101,10)\n", + "plt.plot(ns,errSC,label=('SharpClaw'))\n", + "plt.plot(ns,errCP,label=('ClawPack'))\n", + "plt.yscale('log')\n", + "plt.title('Errors in the gradient density with 100 time steps')\n", + "plt.xlabel('Grid size')\n", + "plt.ylabel('L1 norm of error')\n", + "plt.legend()" + ] + }, + { + "cell_type": "markdown", + "id": "b1d88f26-5be0-4c2a-9945-76f6b4335cd0", + "metadata": {}, + "source": [ + "Interestingly, we can observe that the Sharpclaw might be less accurate than standard Clawpack for bigger grid sizes. We suspect that that passing through the boundaries may play a role, so we repeat the error analysis, but for mean velocities $(0,0)$." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "736ab5a3-b811-42b5-bb23-7c52573f60cf", + "metadata": { + "tags": [] + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2023-12-04 15:02:48,905 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:48,910 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:48,915 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:48,920 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:48,924 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:48,927 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:48,931 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:48,934 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:48,938 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:48,940 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:48,942 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:48,946 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:48,949 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:48,951 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:48,953 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:48,955 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:48,957 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:48,959 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:48,963 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:48,966 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:48,968 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:48,970 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:48,972 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:48,974 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:48,976 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:48,979 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:48,982 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:48,984 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:48,986 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:48,988 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:48,990 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:48,992 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:48,994 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:48,996 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:48,999 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:49,001 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:49,004 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:49,006 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:49,008 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:49,010 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:49,013 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:49,016 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:49,019 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:49,021 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:49,023 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:49,025 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:49,028 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:49,030 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:49,033 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:49,035 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:49,037 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:49,039 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:49,040 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:49,042 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:49,045 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:49,048 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:49,050 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:49,053 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:49,055 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:49,058 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:49,060 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:49,062 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:49,065 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:49,067 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:49,069 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:49,071 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:49,073 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:49,075 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:49,076 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:49,078 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:49,081 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:49,083 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:49,085 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:49,087 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:49,089 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:49,091 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:49,093 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:49,094 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:49,098 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:49,100 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:49,102 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:49,104 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:49,105 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:49,107 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:49,109 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:49,111 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:49,114 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:49,117 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:49,118 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:49,120 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:49,123 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:49,125 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:49,130 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:49,133 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:49,136 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:49,138 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:49,140 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:49,142 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:49,145 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:49,147 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:49,150 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:49,152 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:49,156 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:49,159 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:49,163 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:49,168 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:49,171 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:49,175 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:49,180 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:49,184 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:49,191 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:49,195 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:49,200 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:49,203 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:49,205 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:49,209 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:49,211 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:49,215 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:49,219 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:49,222 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:49,224 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:49,227 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:49,231 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:49,234 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:49,237 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:49,239 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:49,242 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:49,245 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:49,249 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:49,252 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:49,254 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:49,257 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:49,260 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:49,263 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:49,266 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:49,269 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:49,272 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:49,275 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:49,278 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:49,282 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:49,284 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:49,287 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:49,290 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:49,293 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:49,296 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:49,299 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:49,302 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:49,305 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:49,308 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:49,311 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:49,315 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:49,318 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:49,321 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:49,324 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:49,327 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:49,330 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:49,334 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:49,337 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:49,339 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:49,342 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:49,345 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:49,349 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:49,351 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:49,354 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:49,357 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:49,359 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:49,363 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:49,367 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:49,370 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:49,373 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:49,375 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:49,379 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:49,382 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:49,386 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:49,388 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:49,391 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:49,394 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:49,397 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:49,400 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:49,403 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:49,406 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:49,409 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:49,412 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:49,416 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:49,418 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:49,421 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:49,424 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:49,427 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:49,430 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:49,433 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:49,437 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:49,439 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:49,442 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:49,446 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:49,449 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:49,451 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:49,455 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:49,459 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:49,463 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:49,467 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:49,470 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:49,473 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:49,475 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:49,479 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:49,483 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:49,488 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:49,492 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:49,496 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:49,501 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:49,505 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:49,509 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:49,513 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:49,517 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:49,521 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:49,525 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:49,529 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:49,533 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:49,537 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:49,542 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:49,546 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:49,550 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:49,554 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:49,558 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:49,563 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:49,567 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:49,571 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:49,575 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:49,579 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:49,584 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:49,588 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:49,592 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:49,597 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:49,603 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:49,607 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:49,611 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:49,615 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:49,621 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:49,625 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:49,629 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:49,634 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:49,638 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:49,642 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:49,646 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:49,650 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:49,654 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:49,658 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:49,662 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:49,667 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:49,670 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:49,675 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:49,678 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:49,683 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:49,687 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:49,691 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:49,694 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:49,699 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:49,703 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:49,707 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:49,711 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:49,716 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:49,720 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:49,724 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:49,728 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:49,732 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:49,736 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:49,740 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:49,744 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:49,748 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:49,753 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:49,757 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:49,761 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:49,766 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:49,770 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:49,774 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:49,778 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:49,783 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:49,787 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:49,791 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:49,795 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:49,799 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:49,803 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:49,808 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:49,812 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:49,816 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:49,820 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:49,824 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:49,829 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:49,833 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:49,837 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:49,841 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:49,846 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:49,850 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:49,855 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:49,859 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:49,863 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:49,867 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:49,873 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:49,878 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:49,883 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:49,889 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:49,895 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:49,899 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:49,907 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:49,910 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:49,915 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:49,922 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:49,928 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:49,933 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:49,940 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:49,946 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:49,965 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:49,985 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:50,002 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:50,009 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:50,026 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:50,034 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:50,041 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:50,049 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:50,056 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:50,064 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:50,071 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:50,079 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:50,087 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:50,094 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:50,102 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:50,109 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:50,116 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:50,122 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:50,129 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:50,136 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:50,142 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:50,150 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:50,156 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:50,162 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:50,169 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:50,175 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:50,182 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:50,189 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:50,197 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:50,204 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:50,211 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:50,217 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:50,224 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:50,230 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:50,237 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:50,243 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:50,250 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:50,256 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:50,262 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:50,269 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:50,275 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:50,281 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:50,289 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:50,296 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:50,302 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:50,308 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:50,316 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:50,322 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:50,329 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:50,337 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:50,343 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:50,350 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:50,356 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:50,363 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:50,370 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:50,376 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:50,383 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:50,389 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:50,394 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:50,402 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:50,409 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:50,415 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:50,422 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:50,427 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:50,434 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:50,440 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:50,447 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:50,454 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:50,459 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:50,466 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:50,473 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:50,479 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:50,487 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:50,493 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:50,500 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:50,506 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:50,513 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:50,520 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:50,526 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:50,532 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:50,539 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:50,545 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:50,551 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:50,557 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:50,563 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:50,569 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:50,575 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:50,580 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:50,587 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:50,592 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:50,598 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:50,604 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:50,609 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:50,615 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:50,618 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:50,626 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:50,634 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:50,642 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:50,650 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:50,658 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:50,665 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:50,673 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:50,680 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:50,688 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:50,695 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:50,704 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:50,712 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:50,719 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:50,727 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:50,735 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:50,742 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:50,750 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:50,758 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:50,766 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:50,774 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:50,781 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:50,789 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:50,797 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:50,805 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:50,813 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:50,821 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:50,828 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:50,836 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:50,844 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:50,852 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:50,859 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:50,867 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:50,875 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:50,882 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:50,891 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:50,898 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:50,907 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:50,914 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:50,923 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:50,931 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:50,940 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:50,948 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:50,956 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:50,963 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:50,971 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:50,979 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:50,987 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:50,994 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:51,002 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:51,010 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:51,019 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:51,027 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:51,035 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:51,043 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:51,051 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:51,060 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:51,068 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:51,075 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:51,084 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:51,092 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:51,099 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:51,107 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:51,115 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:51,123 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:51,131 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:51,139 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:51,147 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:51,155 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:51,163 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:51,170 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:51,179 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:51,188 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:51,197 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:51,205 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:51,212 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:51,220 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:51,228 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:51,236 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:51,244 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:51,252 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:51,260 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:51,268 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:51,275 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:51,283 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:51,291 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:51,299 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:51,306 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:51,314 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:51,325 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:51,333 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:51,341 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:51,348 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:51,356 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:51,363 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:51,371 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:51,378 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:51,386 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:51,394 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:51,402 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:51,410 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:51,413 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:51,423 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:51,433 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:51,443 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:51,453 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:51,462 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:51,473 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:51,483 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:51,494 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:51,504 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:51,514 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:51,524 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:51,534 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:51,546 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:51,557 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:51,567 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:51,577 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:51,587 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:51,597 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:51,607 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:51,617 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:51,629 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:51,639 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:51,657 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:51,677 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:51,693 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:51,704 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:51,715 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:51,726 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:51,736 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:51,747 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:51,757 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:51,767 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:51,777 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:51,787 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:51,797 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:51,807 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:51,818 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:51,828 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:51,839 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:51,849 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:51,859 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:51,869 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:51,879 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:51,889 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:51,899 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:51,909 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:51,919 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:51,929 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:51,939 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:51,949 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:51,959 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:51,969 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:51,979 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:51,989 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:51,999 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:52,009 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:52,019 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:52,028 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:52,038 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:52,048 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:52,058 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:52,068 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:52,077 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:52,087 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:52,097 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:52,107 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:52,117 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:52,127 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:52,137 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:52,147 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:52,157 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:52,166 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:52,176 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:52,186 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:52,195 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:52,205 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:52,215 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:52,225 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:52,235 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:52,244 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:52,254 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:52,264 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:52,274 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:52,284 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:52,294 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:52,304 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:52,314 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:52,324 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:52,334 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:52,344 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:52,354 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:52,363 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:52,373 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:52,383 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:52,394 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:52,404 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:52,414 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:52,425 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:52,436 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:52,446 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:52,449 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:52,462 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:52,475 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:52,488 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:52,501 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:52,514 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:52,527 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:52,540 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:52,552 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:52,565 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:52,578 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:52,591 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:52,603 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:52,616 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:52,629 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:52,642 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:52,655 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:52,668 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:52,681 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:52,693 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:52,706 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:52,719 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:52,733 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:52,746 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:52,759 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:52,772 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:52,785 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:52,797 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:52,810 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:52,823 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:52,837 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:52,850 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:52,863 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:52,876 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:52,890 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:52,904 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:52,918 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:52,931 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:52,944 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:52,957 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:52,971 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:52,984 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:52,996 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:53,009 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:53,022 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:53,035 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:53,048 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:53,060 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:53,073 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:53,085 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:53,098 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:53,111 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:53,123 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:53,136 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:53,148 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:53,161 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:53,174 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:53,188 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:53,201 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:53,214 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:53,227 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:53,240 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:53,253 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:53,266 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:53,279 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:53,292 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:53,305 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:53,318 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:53,332 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:53,344 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:53,358 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:53,372 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:53,388 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:53,407 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:53,423 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:53,442 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:53,455 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:53,467 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:53,480 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:53,493 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:53,505 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:53,518 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:53,531 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:53,544 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:53,557 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:53,570 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:53,582 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:53,595 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:53,608 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:53,621 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:53,634 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:53,647 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:53,660 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:53,673 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:53,686 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:53,698 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:53,711 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:53,724 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:53,737 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:53,749 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:53,762 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:53,764 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:53,780 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:53,795 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:53,811 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:53,826 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:53,842 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:53,858 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:53,873 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:53,890 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:53,905 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:53,921 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:53,936 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:53,952 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:53,967 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:54,769 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:54,799 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:54,820 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:54,836 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:54,851 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:54,867 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:54,883 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:54,898 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:54,914 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:54,930 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:54,946 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:54,962 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:54,977 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:54,993 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:55,009 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:55,024 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:55,040 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:55,056 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:55,071 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:55,087 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:55,102 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:55,118 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:55,134 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:55,150 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:55,166 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:55,182 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:55,199 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:55,214 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:55,231 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:55,247 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:55,262 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:55,278 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:55,294 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:55,309 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:55,325 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:55,340 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:55,356 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:55,372 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:55,388 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:55,403 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:55,419 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:55,435 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:55,451 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:55,466 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:55,482 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:55,498 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:55,513 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:55,529 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:55,545 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:55,560 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:55,576 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:55,592 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:55,608 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:55,624 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:55,641 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:55,657 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:55,673 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:55,689 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:55,705 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:55,722 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:55,739 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:55,755 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:55,771 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:55,787 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:55,805 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:55,822 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:55,838 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:55,853 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:55,869 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:55,885 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:55,901 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:55,917 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:55,933 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:55,948 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:55,964 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:55,980 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:55,995 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:56,011 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:56,027 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:56,043 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:56,060 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:56,075 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:56,091 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:56,107 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:56,123 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:56,139 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:56,155 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:56,158 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:56,177 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:56,196 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:56,215 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:56,234 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:56,257 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:56,288 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:56,317 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:56,337 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:56,357 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:56,376 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:56,395 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:56,415 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:56,434 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:56,454 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:56,473 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:56,492 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:56,511 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:56,530 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:56,549 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:56,569 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:56,588 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:56,608 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:56,627 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:56,647 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:56,667 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:56,686 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:56,705 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:56,724 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:56,743 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:56,762 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:56,781 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:56,800 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:56,819 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:56,838 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:56,857 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:56,876 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:56,895 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:56,914 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:56,933 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:56,952 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:56,971 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:56,991 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:57,011 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:57,031 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:57,051 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:57,070 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:57,089 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:57,109 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:57,129 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:57,149 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:57,169 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:57,188 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:57,210 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:57,232 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:57,254 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:57,273 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:57,292 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:57,312 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:57,332 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:57,354 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:57,375 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:57,395 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:57,415 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:57,434 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:57,453 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:57,472 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:57,491 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:57,510 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:57,529 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:57,549 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:57,568 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:57,588 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:57,608 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:57,628 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:57,647 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:57,667 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:57,687 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:57,706 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:57,726 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:02:57,745 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:02:57,765 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:02:57,784 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:02:57,803 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:02:57,822 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:02:57,842 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:02:57,861 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:02:57,880 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:02:57,900 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:02:57,919 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:02:57,938 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:02:57,957 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:02:57,976 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:02:57,995 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:02:58,014 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:02:58,033 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:02:58,053 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:02:58,072 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:02:58,091 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:02:58,111 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:02:58,130 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:02:58,132 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:02:58,155 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:02:58,178 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:02:58,200 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:02:58,223 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:02:58,246 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:02:58,269 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:02:58,291 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:02:58,315 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:02:58,339 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:02:58,362 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:02:58,385 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:02:58,408 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:02:58,432 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:02:58,455 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:02:58,478 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:02:58,503 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:02:58,526 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:02:58,551 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:02:58,585 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:02:58,619 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:02:58,643 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:02:58,667 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:02:58,691 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:02:58,714 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:02:58,738 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:02:58,761 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:02:58,784 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:02:58,807 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:02:58,829 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:02:58,853 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:02:58,876 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:02:58,899 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:02:58,922 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:02:58,945 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:02:58,969 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:02:58,992 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:02:59,015 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:02:59,038 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:02:59,061 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:02:59,085 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:02:59,108 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:02:59,131 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:02:59,155 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:02:59,179 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:02:59,202 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:02:59,226 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:02:59,251 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:02:59,276 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:02:59,300 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:02:59,324 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:02:59,347 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:02:59,370 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:02:59,394 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:02:59,417 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:02:59,440 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:02:59,463 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:02:59,486 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:02:59,510 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:02:59,533 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:02:59,555 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:02:59,578 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:02:59,601 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:02:59,624 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:02:59,647 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:02:59,670 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:02:59,693 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:02:59,716 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:02:59,739 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:02:59,762 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:02:59,785 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:02:59,807 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:02:59,830 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:02:59,853 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:02:59,876 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:02:59,899 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:02:59,923 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:02:59,947 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:02:59,971 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:02:59,994 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:00,018 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:00,041 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:00,064 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:00,087 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:00,111 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:00,138 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:00,169 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:00,196 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:00,223 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:00,248 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:00,272 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:00,295 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:00,318 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:00,341 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:00,364 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:00,387 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:00,411 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:00,435 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:00,459 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:00,483 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:00,506 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:00,509 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:00,510 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:00,512 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:00,513 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:00,514 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:00,514 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:00,515 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:00,516 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:00,517 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:00,518 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:00,519 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:00,520 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:00,521 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:00,522 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:00,523 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:00,524 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:00,525 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:00,525 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:00,526 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:00,527 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:00,528 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:00,529 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:00,529 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:00,531 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:00,532 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:00,532 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:00,533 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:00,534 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:00,535 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:00,536 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:00,536 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:00,537 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:00,538 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:00,539 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:00,540 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:00,541 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:00,542 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:00,543 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:00,544 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:00,544 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:00,545 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:00,546 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:00,547 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:00,548 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:00,549 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:00,549 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:00,550 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:00,551 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:00,552 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:00,553 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:00,554 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:00,555 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:00,555 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:00,556 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:00,557 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:00,558 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:00,559 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:00,560 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:00,561 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:00,562 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:00,563 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:00,563 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:00,564 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:00,565 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:00,566 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:00,567 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:00,568 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:00,569 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:00,569 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:00,570 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:00,571 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:00,572 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:00,573 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:00,574 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:00,575 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:00,576 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:00,577 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:00,578 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:00,578 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:00,579 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:00,580 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:00,581 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:00,582 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:00,583 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:00,584 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:00,585 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:00,585 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:00,586 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:00,587 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:00,588 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:00,589 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:00,590 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:00,591 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:00,591 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:00,592 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:00,593 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:00,594 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:00,595 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:00,596 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:00,597 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:00,597 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:00,599 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:00,600 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:00,601 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:00,602 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:00,603 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:00,604 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:00,605 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:00,606 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:00,607 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:00,608 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:00,608 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:00,609 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:00,610 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:00,611 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:00,612 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:00,614 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:00,615 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:00,616 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:00,617 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:00,617 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:00,618 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:00,620 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:00,621 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:00,622 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:00,622 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:00,623 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:00,624 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:00,625 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:00,626 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:00,627 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:00,628 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:00,629 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:00,630 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:00,631 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:00,632 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:00,633 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:00,634 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:00,635 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:00,636 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:00,637 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:00,638 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:00,639 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:00,639 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:00,640 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:00,641 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:00,642 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:00,643 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:00,644 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:00,645 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:00,646 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:00,647 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:00,648 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:00,648 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:00,649 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:00,650 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:00,652 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:00,652 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:00,653 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:00,655 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:00,655 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:00,656 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:00,657 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:00,659 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:00,660 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:00,661 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:00,662 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:00,663 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:00,664 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:00,665 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:00,666 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:00,668 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:00,669 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:00,669 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:00,670 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:00,671 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:00,672 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:00,673 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:00,674 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:00,675 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:00,676 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:00,677 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:00,678 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:00,679 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:00,680 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:00,681 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:00,682 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:00,683 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:00,684 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:00,685 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:00,686 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:00,687 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:00,688 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:00,689 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:00,690 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:00,691 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:00,691 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:00,692 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:00,693 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:00,694 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:00,696 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:00,697 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:00,699 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:00,700 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:00,701 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:00,702 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:00,703 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:00,704 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:00,706 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:00,707 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:00,708 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:00,709 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:00,710 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:00,711 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:00,712 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:00,713 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:00,715 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:00,716 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:00,717 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:00,718 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:00,719 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:00,720 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:00,721 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:00,722 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:00,723 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:00,725 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:00,726 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:00,727 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:00,728 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:00,729 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:00,730 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:00,731 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:00,732 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:00,733 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:00,734 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:00,735 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:00,736 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:00,737 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:00,738 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:00,739 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:00,740 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:00,741 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:00,742 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:00,744 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:00,745 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:00,745 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:00,746 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:00,747 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:00,748 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:00,749 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:00,751 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:00,752 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:00,753 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:00,754 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:00,755 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:00,756 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:00,757 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:00,758 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:00,759 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:00,760 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:00,761 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:00,762 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:00,763 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:00,764 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:00,765 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:00,766 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:00,767 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:00,768 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:00,769 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:00,770 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:00,771 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:00,772 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:00,773 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:00,775 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:00,775 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:00,777 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:00,778 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:00,779 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:00,780 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:00,781 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:00,782 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:00,783 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:00,784 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:00,785 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:00,786 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:00,787 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:00,788 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:00,789 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:00,790 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:00,791 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:00,792 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:00,793 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:00,794 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:00,795 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:00,797 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:00,798 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:00,799 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:00,800 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:00,801 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:00,802 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:00,803 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:00,804 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:00,806 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:00,808 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:00,809 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:00,811 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:00,812 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:00,813 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:00,815 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:00,816 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:00,817 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:00,818 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:00,820 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:00,821 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:00,822 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:00,823 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:00,825 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:00,826 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:00,827 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:00,829 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:00,830 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:00,832 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:00,833 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:00,834 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:00,835 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:00,837 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:00,838 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:00,839 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:00,841 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:00,842 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:00,843 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:00,844 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:00,846 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:00,847 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:00,848 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:00,849 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:00,851 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:00,852 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:00,853 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:00,854 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:00,856 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:00,857 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:00,858 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:00,859 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:00,861 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:00,862 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:00,863 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:00,864 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:00,866 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:00,867 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:00,869 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:00,870 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:00,871 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:00,872 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:00,874 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:00,875 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:00,876 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:00,878 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:00,879 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:00,880 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:00,882 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:00,884 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:00,885 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:00,886 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:00,888 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:00,889 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:00,890 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:00,892 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:00,893 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:00,894 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:00,895 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:00,897 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:00,898 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:00,899 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:00,901 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:00,902 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:00,904 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:00,905 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:00,906 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:00,907 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:00,909 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:00,910 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:00,911 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:00,913 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:00,914 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:00,916 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:00,917 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:00,918 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:00,919 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:00,921 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:00,922 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:00,923 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:00,924 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:00,925 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:00,927 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:00,928 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:00,929 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:00,931 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:00,932 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:00,934 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:00,935 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:00,937 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:00,938 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:00,939 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:00,942 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:00,944 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:00,946 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:00,948 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:00,951 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:00,953 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:00,956 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:00,958 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:00,960 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:00,963 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:00,965 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:00,968 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:00,970 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:00,973 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:00,975 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:00,977 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:00,980 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:00,982 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:00,985 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:00,987 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:00,989 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:00,991 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:00,994 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:00,996 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:00,998 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:01,001 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:01,003 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:01,006 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:01,008 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:01,010 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:01,012 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:01,015 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:01,018 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:01,020 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:01,022 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:01,025 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:01,027 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:01,029 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:01,031 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:01,034 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:01,036 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:01,039 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:01,041 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:01,043 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:01,045 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:01,048 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:01,050 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:01,053 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:01,055 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:01,058 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:01,060 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:01,063 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:01,066 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:01,068 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:01,071 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:01,074 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:01,078 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:01,081 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:01,085 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:01,089 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:01,093 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:01,098 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:01,101 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:01,106 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:01,110 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:01,114 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:01,119 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:01,124 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:01,130 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:01,135 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:01,141 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:01,146 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:01,151 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:01,155 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:01,159 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:01,164 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:01,167 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:01,169 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:01,171 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:01,173 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:01,176 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:01,178 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:01,181 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:01,183 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:01,186 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:01,188 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:01,190 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:01,192 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:01,195 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:01,197 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:01,200 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:01,202 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:01,205 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:01,207 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:01,209 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:01,212 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:01,214 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:01,216 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:01,221 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:01,224 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:01,226 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:01,228 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:01,232 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:01,235 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:01,238 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:01,241 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:01,244 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:01,247 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:01,250 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:01,254 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:01,257 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:01,260 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:01,263 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:01,266 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:01,269 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:01,272 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:01,275 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:01,278 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:01,281 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:01,284 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:01,287 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:01,289 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:01,292 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:01,295 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:01,298 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:01,301 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:01,304 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:01,308 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:01,311 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:01,314 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:01,317 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:01,320 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:01,323 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:01,326 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:01,329 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:01,332 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:01,335 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:01,337 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:01,340 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:01,343 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:01,346 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:01,349 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:01,352 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:01,355 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:01,358 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:01,361 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:01,364 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:01,366 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:01,369 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:01,372 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:01,375 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:01,377 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:01,380 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:01,383 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:01,386 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:01,389 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:01,392 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:01,395 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:01,398 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:01,401 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:01,404 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:01,407 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:01,410 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:01,413 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:01,416 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:01,419 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:01,422 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:01,424 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:01,427 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:01,430 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:01,433 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:01,436 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:01,439 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:01,441 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:01,445 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:01,448 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:01,452 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:01,454 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:01,457 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:01,460 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:01,463 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:01,466 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:01,469 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:01,472 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:01,475 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:01,477 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:01,480 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:01,483 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:01,486 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:01,489 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:01,492 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:01,495 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:01,498 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:01,501 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:01,504 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:01,507 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:01,509 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:01,512 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:01,515 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:01,518 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:01,521 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:01,524 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:01,528 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:01,532 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:01,536 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:01,540 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:01,543 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:01,546 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:01,550 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:01,553 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:01,557 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:01,560 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:01,564 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:01,567 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:01,571 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:01,575 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:01,578 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:01,582 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:01,585 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:01,589 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:01,593 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:01,597 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:01,600 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:01,604 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:01,608 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:01,611 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:01,615 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:01,618 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:01,622 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:01,626 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:01,629 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:01,633 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:01,637 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:01,641 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:01,644 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:01,648 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:01,652 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:01,656 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:01,660 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:01,663 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:01,666 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:01,670 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:01,673 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:01,677 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:01,681 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:01,684 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:01,688 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:01,691 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:01,694 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:01,698 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:01,701 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:01,705 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:01,708 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:01,712 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:01,715 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:01,719 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:01,723 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:01,726 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:01,729 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:01,733 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:01,736 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:01,740 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:01,744 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:01,747 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:01,751 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:01,755 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:01,759 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:01,762 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:01,766 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:01,769 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:01,773 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:01,776 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:01,780 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:01,783 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:01,787 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:01,791 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:01,794 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:01,798 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:01,801 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:01,805 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:01,808 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:01,811 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:01,815 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:01,818 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:01,822 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:01,825 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:01,829 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:01,832 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:01,836 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:01,840 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:01,843 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:01,847 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:01,851 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:01,855 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:01,865 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:01,873 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:01,880 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:01,888 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:01,893 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:01,897 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:01,900 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:01,904 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:01,907 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:01,910 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:01,916 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:01,920 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:01,924 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:01,929 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:01,933 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:01,938 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:01,942 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:01,947 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:01,951 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:01,955 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:01,959 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:01,963 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:01,968 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:01,972 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:01,976 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:01,980 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:01,985 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:01,989 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:01,993 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:01,997 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:02,001 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:02,006 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:02,010 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:02,014 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:02,018 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:02,023 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:02,027 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:02,031 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:02,036 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:02,040 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:02,044 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:02,048 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:02,052 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:02,057 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:02,061 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:02,065 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:02,070 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:02,074 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:02,078 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:02,083 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:02,088 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:02,092 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:02,097 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:02,101 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:02,105 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:02,109 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:02,114 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:02,118 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:02,122 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:02,127 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:02,132 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:02,142 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:02,147 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:02,151 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:02,155 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:02,159 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:02,164 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:02,169 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:02,173 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:02,178 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:02,183 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:02,188 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:02,192 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:02,196 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:02,201 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:02,205 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:02,210 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:02,214 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:02,218 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:02,223 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:02,227 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:02,231 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:02,236 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:02,240 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:02,245 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:02,249 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:02,254 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:02,258 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:02,262 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:02,267 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:02,272 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:02,276 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:02,280 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:02,285 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:02,289 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:02,294 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:02,298 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:02,303 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:02,307 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:02,311 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:02,316 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:02,321 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:02,325 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:02,330 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:02,334 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:02,339 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:02,343 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:02,347 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:02,352 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:02,357 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:02,359 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:02,366 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:02,371 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:02,376 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:02,382 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:02,388 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:02,393 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:02,399 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:02,404 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:02,409 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:02,415 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:02,420 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:02,425 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:02,430 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:02,436 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:02,441 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:02,446 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:02,451 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:02,456 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:02,461 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:02,466 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:02,471 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:02,476 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:02,482 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:02,487 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:02,492 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:02,498 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:02,503 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:02,507 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:02,513 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:02,518 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:02,523 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:02,528 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:02,533 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:02,539 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:02,544 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:02,549 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:02,554 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:02,560 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:02,565 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:02,570 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:02,576 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:02,581 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:02,587 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:02,592 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:02,598 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:02,603 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:02,608 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:02,613 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:02,618 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:02,623 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:02,628 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:02,633 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:02,639 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:02,644 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:02,649 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:02,655 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:02,659 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:02,665 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:02,670 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:02,675 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:02,680 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:02,685 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:02,691 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:02,696 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:02,701 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:02,706 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:02,711 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:02,716 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:02,722 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:02,727 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:02,732 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:02,737 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:02,742 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:02,747 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:02,752 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:02,757 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:02,762 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:02,767 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:02,772 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:02,777 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:02,782 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:02,787 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:02,792 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:02,797 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:02,802 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:02,807 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:02,812 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:02,817 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:02,822 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:02,827 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:02,833 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:02,839 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:02,847 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:02,855 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:02,863 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:02,873 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:02,880 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:02,886 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:02,892 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:02,897 INFO CLAW: Solution 100 computed for time t=10.000000\n", + "2023-12-04 15:03:02,900 INFO CLAW: Solution 0 computed for time t=0.000000\n", + "2023-12-04 15:03:02,911 INFO CLAW: Solution 1 computed for time t=0.100000\n", + "2023-12-04 15:03:02,920 INFO CLAW: Solution 2 computed for time t=0.200000\n", + "2023-12-04 15:03:02,930 INFO CLAW: Solution 3 computed for time t=0.300000\n", + "2023-12-04 15:03:02,938 INFO CLAW: Solution 4 computed for time t=0.400000\n", + "2023-12-04 15:03:02,947 INFO CLAW: Solution 5 computed for time t=0.500000\n", + "2023-12-04 15:03:02,956 INFO CLAW: Solution 6 computed for time t=0.600000\n", + "2023-12-04 15:03:02,964 INFO CLAW: Solution 7 computed for time t=0.700000\n", + "2023-12-04 15:03:02,973 INFO CLAW: Solution 8 computed for time t=0.800000\n", + "2023-12-04 15:03:02,981 INFO CLAW: Solution 9 computed for time t=0.900000\n", + "2023-12-04 15:03:02,990 INFO CLAW: Solution 10 computed for time t=1.000000\n", + "2023-12-04 15:03:02,999 INFO CLAW: Solution 11 computed for time t=1.100000\n", + "2023-12-04 15:03:03,008 INFO CLAW: Solution 12 computed for time t=1.200000\n", + "2023-12-04 15:03:03,016 INFO CLAW: Solution 13 computed for time t=1.300000\n", + "2023-12-04 15:03:03,025 INFO CLAW: Solution 14 computed for time t=1.400000\n", + "2023-12-04 15:03:03,034 INFO CLAW: Solution 15 computed for time t=1.500000\n", + "2023-12-04 15:03:03,042 INFO CLAW: Solution 16 computed for time t=1.600000\n", + "2023-12-04 15:03:03,051 INFO CLAW: Solution 17 computed for time t=1.700000\n", + "2023-12-04 15:03:03,060 INFO CLAW: Solution 18 computed for time t=1.800000\n", + "2023-12-04 15:03:03,069 INFO CLAW: Solution 19 computed for time t=1.900000\n", + "2023-12-04 15:03:03,077 INFO CLAW: Solution 20 computed for time t=2.000000\n", + "2023-12-04 15:03:03,087 INFO CLAW: Solution 21 computed for time t=2.100000\n", + "2023-12-04 15:03:03,102 INFO CLAW: Solution 22 computed for time t=2.200000\n", + "2023-12-04 15:03:03,111 INFO CLAW: Solution 23 computed for time t=2.300000\n", + "2023-12-04 15:03:03,120 INFO CLAW: Solution 24 computed for time t=2.400000\n", + "2023-12-04 15:03:03,128 INFO CLAW: Solution 25 computed for time t=2.500000\n", + "2023-12-04 15:03:03,137 INFO CLAW: Solution 26 computed for time t=2.600000\n", + "2023-12-04 15:03:03,145 INFO CLAW: Solution 27 computed for time t=2.700000\n", + "2023-12-04 15:03:03,155 INFO CLAW: Solution 28 computed for time t=2.800000\n", + "2023-12-04 15:03:03,163 INFO CLAW: Solution 29 computed for time t=2.900000\n", + "2023-12-04 15:03:03,172 INFO CLAW: Solution 30 computed for time t=3.000000\n", + "2023-12-04 15:03:03,181 INFO CLAW: Solution 31 computed for time t=3.100000\n", + "2023-12-04 15:03:03,189 INFO CLAW: Solution 32 computed for time t=3.200000\n", + "2023-12-04 15:03:03,199 INFO CLAW: Solution 33 computed for time t=3.300000\n", + "2023-12-04 15:03:03,207 INFO CLAW: Solution 34 computed for time t=3.400000\n", + "2023-12-04 15:03:03,217 INFO CLAW: Solution 35 computed for time t=3.500000\n", + "2023-12-04 15:03:03,225 INFO CLAW: Solution 36 computed for time t=3.600000\n", + "2023-12-04 15:03:03,234 INFO CLAW: Solution 37 computed for time t=3.700000\n", + "2023-12-04 15:03:03,242 INFO CLAW: Solution 38 computed for time t=3.800000\n", + "2023-12-04 15:03:03,251 INFO CLAW: Solution 39 computed for time t=3.900000\n", + "2023-12-04 15:03:03,260 INFO CLAW: Solution 40 computed for time t=4.000000\n", + "2023-12-04 15:03:03,268 INFO CLAW: Solution 41 computed for time t=4.100000\n", + "2023-12-04 15:03:03,277 INFO CLAW: Solution 42 computed for time t=4.200000\n", + "2023-12-04 15:03:03,286 INFO CLAW: Solution 43 computed for time t=4.300000\n", + "2023-12-04 15:03:03,296 INFO CLAW: Solution 44 computed for time t=4.400000\n", + "2023-12-04 15:03:03,306 INFO CLAW: Solution 45 computed for time t=4.500000\n", + "2023-12-04 15:03:03,315 INFO CLAW: Solution 46 computed for time t=4.600000\n", + "2023-12-04 15:03:03,324 INFO CLAW: Solution 47 computed for time t=4.700000\n", + "2023-12-04 15:03:03,333 INFO CLAW: Solution 48 computed for time t=4.800000\n", + "2023-12-04 15:03:03,342 INFO CLAW: Solution 49 computed for time t=4.900000\n", + "2023-12-04 15:03:03,351 INFO CLAW: Solution 50 computed for time t=5.000000\n", + "2023-12-04 15:03:03,360 INFO CLAW: Solution 51 computed for time t=5.100000\n", + "2023-12-04 15:03:03,368 INFO CLAW: Solution 52 computed for time t=5.200000\n", + "2023-12-04 15:03:03,377 INFO CLAW: Solution 53 computed for time t=5.300000\n", + "2023-12-04 15:03:03,385 INFO CLAW: Solution 54 computed for time t=5.400000\n", + "2023-12-04 15:03:03,394 INFO CLAW: Solution 55 computed for time t=5.500000\n", + "2023-12-04 15:03:03,402 INFO CLAW: Solution 56 computed for time t=5.600000\n", + "2023-12-04 15:03:03,411 INFO CLAW: Solution 57 computed for time t=5.700000\n", + "2023-12-04 15:03:03,420 INFO CLAW: Solution 58 computed for time t=5.800000\n", + "2023-12-04 15:03:03,429 INFO CLAW: Solution 59 computed for time t=5.900000\n", + "2023-12-04 15:03:03,439 INFO CLAW: Solution 60 computed for time t=6.000000\n", + "2023-12-04 15:03:03,448 INFO CLAW: Solution 61 computed for time t=6.100000\n", + "2023-12-04 15:03:03,457 INFO CLAW: Solution 62 computed for time t=6.200000\n", + "2023-12-04 15:03:03,466 INFO CLAW: Solution 63 computed for time t=6.300000\n", + "2023-12-04 15:03:03,474 INFO CLAW: Solution 64 computed for time t=6.400000\n", + "2023-12-04 15:03:03,482 INFO CLAW: Solution 65 computed for time t=6.500000\n", + "2023-12-04 15:03:03,491 INFO CLAW: Solution 66 computed for time t=6.600000\n", + "2023-12-04 15:03:03,499 INFO CLAW: Solution 67 computed for time t=6.700000\n", + "2023-12-04 15:03:03,508 INFO CLAW: Solution 68 computed for time t=6.800000\n", + "2023-12-04 15:03:03,516 INFO CLAW: Solution 69 computed for time t=6.900000\n", + "2023-12-04 15:03:03,525 INFO CLAW: Solution 70 computed for time t=7.000000\n", + "2023-12-04 15:03:03,534 INFO CLAW: Solution 71 computed for time t=7.100000\n", + "2023-12-04 15:03:03,542 INFO CLAW: Solution 72 computed for time t=7.200000\n", + "2023-12-04 15:03:03,551 INFO CLAW: Solution 73 computed for time t=7.300000\n", + "2023-12-04 15:03:03,560 INFO CLAW: Solution 74 computed for time t=7.400000\n", + "2023-12-04 15:03:03,569 INFO CLAW: Solution 75 computed for time t=7.500000\n", + "2023-12-04 15:03:03,577 INFO CLAW: Solution 76 computed for time t=7.600000\n", + "2023-12-04 15:03:03,586 INFO CLAW: Solution 77 computed for time t=7.700000\n", + "2023-12-04 15:03:03,595 INFO CLAW: Solution 78 computed for time t=7.800000\n", + "2023-12-04 15:03:03,604 INFO CLAW: Solution 79 computed for time t=7.900000\n", + "2023-12-04 15:03:03,612 INFO CLAW: Solution 80 computed for time t=8.000000\n", + "2023-12-04 15:03:03,621 INFO CLAW: Solution 81 computed for time t=8.100000\n", + "2023-12-04 15:03:03,629 INFO CLAW: Solution 82 computed for time t=8.200000\n", + "2023-12-04 15:03:03,638 INFO CLAW: Solution 83 computed for time t=8.300000\n", + "2023-12-04 15:03:03,646 INFO CLAW: Solution 84 computed for time t=8.400000\n", + "2023-12-04 15:03:03,655 INFO CLAW: Solution 85 computed for time t=8.500000\n", + "2023-12-04 15:03:03,664 INFO CLAW: Solution 86 computed for time t=8.600000\n", + "2023-12-04 15:03:03,672 INFO CLAW: Solution 87 computed for time t=8.700000\n", + "2023-12-04 15:03:03,681 INFO CLAW: Solution 88 computed for time t=8.800000\n", + "2023-12-04 15:03:03,690 INFO CLAW: Solution 89 computed for time t=8.900000\n", + "2023-12-04 15:03:03,698 INFO CLAW: Solution 90 computed for time t=9.000000\n", + "2023-12-04 15:03:03,707 INFO CLAW: Solution 91 computed for time t=9.100000\n", + "2023-12-04 15:03:03,716 INFO CLAW: Solution 92 computed for time t=9.200000\n", + "2023-12-04 15:03:03,725 INFO CLAW: Solution 93 computed for time t=9.300000\n", + "2023-12-04 15:03:03,733 INFO CLAW: Solution 94 computed for time t=9.400000\n", + "2023-12-04 15:03:03,742 INFO CLAW: Solution 95 computed for time t=9.500000\n", + "2023-12-04 15:03:03,751 INFO CLAW: Solution 96 computed for time t=9.600000\n", + "2023-12-04 15:03:03,760 INFO CLAW: Solution 97 computed for time t=9.700000\n", + "2023-12-04 15:03:03,769 INFO CLAW: Solution 98 computed for time t=9.800000\n", + "2023-12-04 15:03:03,778 INFO CLAW: Solution 99 computed for time t=9.900000\n", + "2023-12-04 15:03:03,793 INFO CLAW: Solution 100 computed for time t=10.000000\n" + ] + } + ], + "source": [ + "errSC_noBC=[0]*10\n", + "for i in range (1,11):\n", + " clawSC = pyclaw.Controller()\n", + " clawSC.tfinal = 10.\n", + " clawSC.num_output_times =100\n", + "\n", + " clawSC.solver = pyclaw.SharpClawSolver2D(riemann_solver)\n", + " clawSC.solver.all_bcs = pyclaw.BC.periodic\n", + "\n", + " grid_size = (i*10,i*10)\n", + " domain = pyclaw.Domain( (0.,0.), (10.,10.), grid_size)\n", + "\n", + " clawSC.solution = pyclaw.Solution(clawSC.solver.num_eqn,domain)\n", + " gam = 1.4\n", + " clawSC.solution.problem_data['gamma'] = gam\n", + "\n", + "# Set initial data\n", + " q = clawSC.solution.q\n", + " xx,yy = domain.grid.p_centers\n", + " eps=5 #vortex strength\n", + " xbar=xx-5.0\n", + " ybar=yy-5.0\n", + " r2=xbar**2+ybar**2\n", + " A=eps/(2*np.pi)*np.exp(0.5*(1.0-r2))\n", + " dT=-(gam-1.)*eps**2/(8*gam*np.pi**2)*np.exp(1-r2)\n", + " S_vor=1\n", + " T=1+dT\n", + " rho = pow(T / S_vor, 1 / (gam - 1.));\n", + " P=rho*T\n", + " c_v=0\n", + " c_w=0\n", + "\n", + " q[0,...] =rho\n", + " q[1,...] = rho*(c_v-A*ybar)\n", + " q[2,...] = rho*(c_w+A*xbar)\n", + " q[3,...] = 0.5*rho*((c_v-A*ybar)**2+(c_w+A*xbar)**2) + P/(gam-1.)\n", + "\n", + " clawSC.keep_copy = True # Keep solution data in memory for plotting\n", + " clawSC.output_format = None # Don't write solution data to file\n", + " clawSC.solver.dt_initial=1.e99\n", + " status = clawSC.run()\n", + " frameSC_init = clawSC.frames[0]\n", + " densitySC_init = frameSC_init.q[0,:,:]\n", + " (vxSC_init,vySC_init) = np.gradient(densitySC_init)\n", + " vsSC_init = np.sqrt(vxSC_init**2 + vySC_init**2)\n", + " frameSC_fin = clawSC.frames[-1]\n", + " densitySC_fin = frameSC_fin.q[0,:,:]\n", + " (vxSC_fin,vySC_fin) = np.gradient(densitySC_fin)\n", + " vsSC_fin = np.sqrt(vxSC_fin**2 + vySC_fin**2) \n", + " errSC_noBC[i-1]=np.linalg.norm((vsSC_init-vsSC_fin).flatten(),ord=1)\n", + "\n", + "errCP_noBC=[0]*10\n", + "for i in range (1,11):\n", + " clawCP = pyclaw.Controller()\n", + " clawCP.tfinal = 10.\n", + " clawCP.num_output_times =100\n", + "\n", + " clawCP.solver = pyclaw.ClawSolver2D(riemann_solver)\n", + " clawCP.solver.all_bcs = pyclaw.BC.periodic\n", + "\n", + " grid_size = (i*10,i*10)\n", + " domain = pyclaw.Domain( (0.,0.), (10.,10.), grid_size)\n", + "\n", + " clawCP.solution = pyclaw.Solution(clawCP.solver.num_eqn,domain)\n", + " gam = 1.4\n", + " clawCP.solution.problem_data['gamma'] = gam\n", + "\n", + "# Set initial data\n", + " q = clawCP.solution.q\n", + " xx,yy = domain.grid.p_centers\n", + " eps=5 #vortex strength\n", + " xbar=xx-5.0\n", + " ybar=yy-5.0\n", + " r2=xbar**2+ybar**2\n", + " A=eps/(2*np.pi)*np.exp(0.5*(1.0-r2))\n", + " dT=-(gam-1.)*eps**2/(8*gam*np.pi**2)*np.exp(1-r2)\n", + " S_vor=1\n", + " T=1+dT\n", + " rho = pow(T / S_vor, 1 / (gam - 1.));\n", + " P=rho*T\n", + " c_v=0\n", + " c_w=0\n", + "\n", + " q[0,...] =rho\n", + " q[1,...] = rho*(c_v-A*ybar)\n", + " q[2,...] = rho*(c_w+A*xbar)\n", + " q[3,...] = 0.5*rho*((c_v-A*ybar)**2+(c_w+A*xbar)**2) + P/(gam-1.)\n", + "\n", + " clawCP.keep_copy = True # Keep solution data in memory for plotting\n", + " clawCP.output_format = None # Don't write solution data to file\n", + " clawCP.solver.dt_initial=1.e99\n", + " status = clawCP.run()\n", + " frameCP_init = clawCP.frames[0]\n", + " densityCP_init = frameCP_init.q[0,:,:]\n", + " (vxCP_init,vyCP_init) = np.gradient(densityCP_init)\n", + " vsCP_init = np.sqrt(vxCP_init**2 + vyCP_init**2)\n", + " frameCP_fin = clawCP.frames[-1]\n", + " densityCP_fin = frameCP_fin.q[0,:,:]\n", + " (vxCP_fin,vyCP_fin) = np.gradient(densityCP_fin)\n", + " vsCP_fin = np.sqrt(vxCP_fin**2 + vyCP_fin**2) \n", + " errCP_noBC[i-1]=np.linalg.norm((vsCP_init-vsCP_fin).flatten(),ord=1)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "f3fe6b66-6390-4ee8-ac05-a8c567d62bab", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "ns=range(10,101,10)\n", + "plt.plot(ns,errSC_noBC,label=('SharpClaw'))\n", + "plt.plot(ns,errCP_noBC,label=('ClawPack'))\n", + "plt.yscale('log')\n", + "plt.title('Errors in the gradient density with 100 time steps, zero velocity')\n", + "plt.xlabel('Grid size')\n", + "plt.ylabel('L1 norm of error')\n", + "plt.legend()" + ] + }, + { + "cell_type": "markdown", + "id": "c577522e-ee46-4025-a694-2ad3932abc9f", + "metadata": {}, + "source": [ + "So with zero mean velocities (i.e. the vortex is the center of reference), we see that Sharpclaw is uniformly more accurate that standard Clawpack as expected." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "bfdf20ca-c2e7-4b2d-9f4b-a1ebdd96d949", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "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.9.18" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +}