diff --git a/.github/workflows/build_centos7.yml b/.github/workflows/build_centos7.yml index 32c86126b..d0eded048 100644 --- a/.github/workflows/build_centos7.yml +++ b/.github/workflows/build_centos7.yml @@ -6,6 +6,7 @@ on: branches: - develop - dependabot/* + - profiling - release/* pull_request: release: @@ -40,7 +41,7 @@ jobs: workdir: docker dockerfile: centos7-system-deps cache: false - tags: latest,1.0.0 + tags: 1.0.1 versions: runs-on: ubuntu-latest @@ -66,7 +67,7 @@ jobs: build: runs-on: ubuntu-latest needs: [ docker_publish, versions ] - container: 'antaresrte/xpansion-centos7' + container: 'antaresrte/xpansion-centos7:1.0.1' strategy: matrix: xprs: [ @@ -82,6 +83,7 @@ jobs: XPRESS_CONTAINER: ${GITHUB_WORKSPACE}/xpress/bin XPRS_LIB_Path_CONTAINER: ${GITHUB_WORKSPACE}/xpress/lib VCPKG_ROOT: ${{ github.workspace }}/vcpkg + ORTOOLS_DIR: $GITHUB_WORKSPACE/or-tools outputs: TGZ_NAME: ${{ steps.export_output.outputs.TGZ_NAME }} @@ -89,13 +91,17 @@ jobs: steps: - run: | - source /opt/rh/devtoolset-10/enable + source /opt/rh/devtoolset-11/enable echo $PATH >> $GITHUB_PATH - name: Get release if: github.event_name == 'release' && github.event.action == 'created' id: get_release uses: bruceadams/get-release@v1.3.2 - + + - name: Config OR-Tools URL + run: | + echo "ORTOOLS_URL=https://github.com/rte-france/or-tools/releases/download/v9.8-rte1.0/ortools_cxx_centos7_static.zip" >> $GITHUB_ENV + - uses: actions/checkout@v3 #Keep at 3 with: submodules: true @@ -124,14 +130,16 @@ jobs: antares-version: ${{needs.versions.outputs.antares-version}} os: centos7 os-full-name: CentOS-7.9.2009 - + ortools-url: ${{env.ORTOOLS_URL}} + ortools-dir: ${{env.ORTOOLS_DIR}} + - name: repo update run: | yum update sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo - + - name: Install dependencies run: | pip3 install --upgrade pip @@ -159,21 +167,36 @@ jobs: # Allows to restore a cache when deps have only partially changed (like adding a dependency) restore-keys: vcpkg-cache-centOS- + - uses: actions/checkout@v3 #keep v3 + with: + repository: intel/ittapi.git + github-server-url: https://github.com + ref: master + path: ${{ github.workspace }}/ittapi + + - name: Install itt vtune + run: | + cd ittapi + python buildall.py --force_bits 64 + cd build_linux2/64 + cmake --install . --prefix ${GITHUB_WORKSPACE}/itt + - name: Configure run: | - source /opt/rh/devtoolset-10/enable + source /opt/rh/devtoolset-11/enable cmake -B _build -S . \ - -DBUILD_TESTING=ON \ - -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/deps \ - -DCMAKE_BUILD_TYPE=Release \ + -DBUILD_TESTING=OFF \ + -DCMAKE_PREFIX_PATH="${GITHUB_WORKSPACE}/deps;${{env.ORTOOLS_DIR}}/install;${GITHUB_WORKSPACE}/itt" \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ -DCMAKE_INSTALL_PREFIX=_install \ - -DBUILD_UI=ON \ + -DBUILD_UI=OFF \ -DALLOW_RUN_AS_ROOT=ON \ + -DVCPKG_TARGET_TRIPLET=x64-linux-release \ -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake - name: Build run: | - cmake --build _build --config Release -j$(nproc) + cmake --build _build --config RelWithDebInfo -j$(nproc) - name: Cache vcpkg binary dir if: always() @@ -183,16 +206,6 @@ jobs: path: ${{ env.VCPKG_CACHE_DIR }} key: vcpkg-cache-centOS-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - - name: Running unit tests - timeout-minutes: 120 - shell: bash - run: | - export PATH=${GITHUB_WORKSPACE}/_build/vcpkg_installed/x64-linux/tools/openmpi/bin/:$PATH - export LD_LIBRARY_PATH=LD_LIBRARY_PATH:${{ env.XPRS_LIB_Path_CONTAINER }} - export XPRESS=${{ env.XPRESS_CONTAINER }} - cd _build - ctest -C Release --output-on-failure -L "unit|benders|lpnamer|medium" - ####################### - name: Install run: | diff --git a/.github/workflows/build_oracle8.yml b/.github/workflows/build_oracle8.yml deleted file mode 100644 index ab5eba027..000000000 --- a/.github/workflows/build_oracle8.yml +++ /dev/null @@ -1,258 +0,0 @@ -name: Oracle 8 Build - -on: - merge_group: - push: - branches: - - develop - - dependabot/* - - release/* - pull_request: - release: - types: [ created ] - -env: - GITHUB_TOKEN: ${{ github.token }} - -jobs: - versions: - runs-on: ubuntu-latest - outputs: - antares-version: ${{steps.antares-version.outputs.result}} - antares-xpansion-version: ${{steps.antares-xpansion-version.outputs.result}} - steps: - - uses: actions/checkout@v4 - - name: Read antares-solver version - id: antares-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_version' - - - name: Read antares-xpansion version - id: antares-xpansion-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_xpansion_version' - - build: - name: Build - runs-on: ubuntu-latest - container: 'oraclelinux:8' - strategy: - matrix: - xprs: [ - # { value: XPRESS-ON, ref: 8.13a }, - { value: XPRESS-ON, ref: 9.2.5 }, - # { value: XPRESS-OFF } - ] - needs: [ versions ] - env: - XPRESSDIR: ${{ github.workspace }}/xpress - XPRESS: ${{ github.workspace }}/xpress/bin - XPRS_LIB_Path: ${{ github.workspace }}/xpress/lib - XPRESSDIR_CONTAINER: ${GITHUB_WORKSPACE}/xpress - XPRESS_CONTAINER: ${GITHUB_WORKSPACE}/xpress/bin - XPRS_LIB_Path_CONTAINER: ${GITHUB_WORKSPACE}/xpress/lib - - outputs: - zip_name: ${{ steps.zip_name.outputs.zip_name }} - singlefile_name: ${{ steps.zip_name.outputs.singlefile_name }} - - steps: - - name: Install System - run: | - dnf install -y epel-release git wget rpm-build redhat-lsb-core - dnf install -y unzip libuuid-devel gcc-toolset-10-toolchain python3-devel zlib-devel - #make gcc &co available system wide and "action wide" - source /opt/rh/gcc-toolset-10/enable - echo $PATH >> $GITHUB_PATH - - - run: | - dnf module install -y nodejs:20/common - - - uses: lukka/get-cmake@latest - with: - useLocalCache: false - useCloudCache: true - - - uses: actions/checkout@v4 - with: - submodules: true - - - name: Checkout xpressmp linux - uses: actions/checkout@v4 - with: - token: ${{ secrets.AS_TOKEN }} - repository: rte-france/xpress-mp - path: ${{ env.XPRESSDIR }} - github-server-url: https://github.com - ref: ${{matrix.xprs.ref}} - if: matrix.xprs.value == 'XPRESS-ON' - - - name: Set up Python - run: | - dnf update -y - dnf install -y python3 python3-pip - pip3 install wheel #Too late to install in requirements.txt - pip3 install -r requirements-tests.txt - - - name: Download pre-compiled librairies - uses: ./.github/workflows/download-extract-precompiled-libraries-tgz - with: - antares-version: ${{needs.versions.outputs.antares-version}} - os: Oracle8 - os-full-name: OracleServer-8.10 - - - name: vcpkg install - run: | - git config --global safe.directory '*' - git submodule update --remote --init vcpkg - pushd vcpkg - git fetch --unshallow - ./bootstrap-vcpkg.sh -disableMetrics - echo "VCPKG_ROOT=$GITHUB_WORKSPACE/vcpkg" >> $GITHUB_ENV - echo "VCPKG_CACHE_DIR=$GITHUB_WORKSPACE/vcpkg_cache" >> $GITHUB_ENV - echo "VCPKG_BINARY_SOURCES=clear;files,$GITHUB_WORKSPACE/vcpkg_cache,readwrite" >> $GITHUB_ENV - - - name: Restore vcpkg binary dir from cache - id: cache-vcpkg-binary - uses: actions/cache/restore@v4 - with: - path: ${{ env.VCPKG_CACHE_DIR }} - key: vcpkg-cache-oracle8-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - # Allows to restore a cache when deps have only partially changed (like adding a dependency) - restore-keys: vcpkg-cache-oracle8- - - - name: Configure - run: | - cmake -B _build -S . \ - -DBUILD_TESTING=ON \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=_install \ - -DCMAKE_PREFIX_PATH=${GITHUB_WORKSPACE}/deps \ - -DBUILD_UI=OFF \ - -DALLOW_RUN_AS_ROOT=ON \ - -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake - - - name: Build - run: | - cmake --build _build --config Release -j$(nproc) - - - name: Running unit tests - timeout-minutes: 120 - shell: bash - run: | - export PATH=${GITHUB_WORKSPACE}/_build/vcpkg_installed/x64-linux/tools/openmpi/bin/:$PATH - export LD_LIBRARY_PATH=LD_LIBRARY_PATH:${{ env.XPRS_LIB_Path_CONTAINER }} - export XPRESS=${{ env.XPRESS_CONTAINER }} - cd _build - ctest -C Release --output-on-failure -L "unit|benders|lpnamer|medium" - - - name: Cache vcpkg binary dir - if: always() - id: save-cache-vcpkg-binary - uses: actions/cache/save@v4 - with: - path: ${{ env.VCPKG_CACHE_DIR }} - key: vcpkg-cache-oracle8-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - - ####################### - - name: Install - run: | - cd _build - cmake --install . - - - name: .tar.gz creation - run: | - cd _build - export FILE_NAME="antaresXpansion-${{needs.versions.outputs.antares-xpansion-version}}-OracleServer-8.10" - cpack -G TGZ -D CPACK_PACKAGE_FILE_NAME=$FILE_NAME - echo "TGZ_NAME=$FILE_NAME.tar.gz" >> $GITHUB_ENV - - - name: Upload .tar.gz - uses: actions/upload-artifact@v4 - with: - name: ${{env.TGZ_NAME}} - path: _build/${{env.TGZ_NAME}} - - - id: create-single-file - name: Single file .tar.gz creation - uses: ./.github/workflows/single-file-creation-tgz - with: - antares-xpansion-version: ${{needs.versions.outputs.antares-xpansion-version}} - - - name: Upload single file - uses: actions/upload-artifact@v4 - with: - name: ${{ steps.create-single-file.outputs.archive-name }} - path: ${{ steps.create-single-file.outputs.archive-path }} - - - id: zip_name - run: | - echo "singlefile_name=${{steps.create-single-file.outputs.archive-name}}" >> "$GITHUB_OUTPUT" - echo "zip_name=${{env.TGZ_NAME}}" >> "$GITHUB_OUTPUT" - ####################### - userguide: - if: github.event_name == 'release' && github.event.action == 'created' - runs-on: ubuntu-latest - outputs: - pdf-name: ${{ steps.create-user-guide.outputs.pdf-name }} - - steps: - - uses: actions/checkout@v4 - - - name: Read antares-xpansion version - id: antares-xpansion-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_xpansion_version' - - - id: create-user-guide - name: user guide pdf creation - uses: ./.github/workflows/generate-userguide-pdf - with: - antares-xpansion-version: ${{steps.antares-xpansion-version.outputs.result}} - - - name: user guide upload - id: userguide_upload - uses: actions/upload-artifact@v4 - with: - name: user-guide - path: ${{ steps.create-user-guide.outputs.pdf-path }} - - upload_asset_to_release: - if: github.event_name == 'release' && github.event.action == 'created' - runs-on: ubuntu-latest - needs: [build, userguide] - env: - ZIP_NAME: ${{needs.build.outputs.zip_name}} - SINGLEFILE_NAME: ${{needs.build.outputs.singlefile_name}} - steps: - - name: Get release - id: get_release - uses: bruceadams/get-release@main - - - name: Download Artifact - uses: actions/download-artifact@v4 - with: - name: ${{env.ZIP_NAME}} - path: . - - - name: Download Artifact - uses: actions/download-artifact@v4 - with: - name: ${{env.SINGLEFILE_NAME}} - path: . - - - name: Upload Release Asset - env: - GH_REPO: ${{ github.repository }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.ZIP_NAME}} - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.SINGLEFILE_NAME}} - - ######################## \ No newline at end of file diff --git a/.github/workflows/build_ubuntu.yml b/.github/workflows/build_ubuntu.yml index f2df41806..cd877c668 100644 --- a/.github/workflows/build_ubuntu.yml +++ b/.github/workflows/build_ubuntu.yml @@ -32,6 +32,7 @@ jobs: XPRESS: ${{ github.workspace }}/xpress/bin XPRS_LIB_Path: ${{ github.workspace }}/xpress/lib VCPKG_BINARY_SOURCES: "clear;files,${{ github.workspace }}/vcpkg_cache,readwrite" + ORTOOLS_DIR: $GITHUB_WORKSPACE/or-tools outputs: TGZ_NAME: ${{ steps.export_output.outputs.TGZ_NAME }} @@ -104,12 +105,18 @@ jobs: path: 'antares-version.json' key: 'antares_xpansion_version' + - name: Config OR-Tools URL + run: | + echo "ORTOOLS_URL=https://github.com/rte-france/or-tools-rte/releases/download/v9.10-rte1.1/ortools_cxx_ubuntu-20.04_static_sirius.zip" >> $GITHUB_ENV + - name: Download pre-compiled librairies uses: ./.github/workflows/download-extract-precompiled-libraries-tgz with: antares-version: ${{steps.antares-version.outputs.result}} os: ${{matrix.os}} os-full-name: Ubuntu-20.04 + ortools-url: ${{env.ORTOOLS_URL}} + ortools-dir: ${{env.ORTOOLS_DIR}} - name: vcpkg install run: | @@ -138,8 +145,9 @@ jobs: -DBUILD_TESTING=ON \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=_install \ - -DCMAKE_PREFIX_PATH=${{ github.workspace }}/deps \ + -DCMAKE_PREFIX_PATH="${{ github.workspace }}/deps;${{env.ORTOOLS_DIR}}/install" \ -DBUILD_UI=ON \ + -DVCPKG_TARGET_TRIPLET=x64-linux-release \ -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake - name: Build @@ -148,7 +156,7 @@ jobs: - name: Test run: | - export PATH=${GITHUB_WORKSPACE}/_build/vcpkg_installed/x64-linux/tools/openmpi/bin:$PATH + export PATH=${GITHUB_WORKSPACE}/_build/vcpkg_installed/x64-linux-release/tools/openmpi/bin/:$PATH cd _build ctest -C Release --output-on-failure -L "medium|unit|benders|lpnamer" diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml deleted file mode 100644 index 629c87135..000000000 --- a/.github/workflows/build_windows.yml +++ /dev/null @@ -1,235 +0,0 @@ -name: Windows build - -on: - merge_group: - push: - branches: - - main - - develop - - dependabot/* - - release/* - pull_request: - release: - types: [ created ] - -env: - GITHUB_TOKEN: ${{ github.token }} - -jobs: - build: - runs-on: ${{ matrix.os }} - if: "!contains(github.event.head_commit.message, '[skip ci]')" - strategy: - matrix: - os: [ windows-latest ] - triplet: [ x64-windows-release ] - xprs: [ #{ value: XPRESS-ON, ref: 8.13a }, - { value: XPRESS-ON, ref: 9.2.5 }, - #{ value: XPRESS-OFF } - ] - env: - XPRESSDIR: ${{ github.workspace }}\xpress - XPRESS: ${{ github.workspace }}\xpress\bin - XPRS_LIB_Path: ${{ github.workspace }}\xpress\lib - # Indicates the location of the vcpkg as a Git submodule of the project repository. - VCPKG_ROOT: ${{ github.workspace }}/vcpkg - VCPKG_BINARY_SOURCES: "clear;files,${{ github.workspace }}/vcpkg_cache,readwrite" - - outputs: - zip_name: ${{ steps.zip_name.outputs.zip_name }} - singlefile_name: ${{steps.zip_name.outputs.singlefile_name}} - - steps: - - uses: actions/checkout@v4 - - - name: Checkout xpressmp linux - if: matrix.xprs.value == 'XPRESS-ON' - uses: actions/checkout@v4 - with: - repository: rte-france/xpress-mp-temp - path: ${{ env.XPRESSDIR }} - ref: ${{matrix.xprs.ref}} - token: ${{ secrets.AS_TOKEN }} - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.x' - cache: 'pip' - cache-dependency-path: requirements*.txt - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-tests.txt - pip install -r requirements-ui.txt - - - name: Pre-requisites - shell: cmd - run: | - choco install wget zip unzip --no-progress - wget -nv https://github.com/microsoft/Microsoft-MPI/releases/download/v10.1.1/msmpisetup.exe - msmpisetup.exe -unattend - - - name: Read antares-solver version - id: antares-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_version' - - - name: Read antares-xpansion version - id: antares-xpansion-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_xpansion_version' - - - name: vcpkg install - shell: bash - run: | - git submodule update --remote --init vcpkg - pushd vcpkg - ./bootstrap-vcpkg.bat -disableMetrics - - - name: Restore vcpkg binary dir from cache - id: cache-vcpkg-binary - uses: actions/cache/restore@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-windows-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - # Allows to restore a cache when deps have only partially changed (like adding a dependency) - restore-keys: vcpkg-cache-windows- - - - name: Download pre-compiled librairies - uses: ./.github/workflows/download-extract-precompiled-libraries-zip - with: - antares-version: ${{steps.antares-version.outputs.result}} - os: ${{matrix.os}} - - - name: Configure - run: | - $pwd=Get-Location - cmake -B _build -S . -DCMAKE_PREFIX_PATH="$pwd\rte-antares-${{steps.antares-version.outputs.result}}-installer-64bits" -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="${{env.VCPKG_ROOT}}/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=${{ matrix.triplet }} -DCMAKE_INSTALL_PREFIX=_install -DBUILD_UI=ON - - - name: Build - run: | - cmake --build _build --config Release -j4 - - - name: Cache vcpkg binary dir - if: always() - id: save-cache-vcpkg-binary - uses: actions/cache/save@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-windows-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - - - name: Running unit tests - timeout-minutes: 120 - shell: cmd - run: | - set PATH=%PATH%;C:\Program Files\Microsoft MPI\Bin - set PATH=%PATH%;${{ env.XPRESS }} - set XPRESSDIR=${{ env.XPRESSDIR }} - cd _build - ctest -C Release --output-on-failure -L "medium|unit|benders|lpnamer" - - ############## - - name: install - run: | - cd _build - cmake --install . - - - name: Create installer .zip - shell: bash - run: | - cd _build - cpack -G ZIP - export ZIP_NAME=$(ls *.zip) - echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_ENV - - - name: Upload installer - uses: actions/upload-artifact@v4 - with: - name: ${{env.ZIP_NAME}} - path: _build/${{env.ZIP_NAME}} - - - name: Create single file .zip - id: create-single-file - uses: ./.github/workflows/single-file-creation-zip - with: - antares-xpansion-version: ${{steps.antares-xpansion-version.outputs.result}} - - - name: Upload single file - uses: actions/upload-artifact@v4 - with: - name: ${{ steps.create-single-file.outputs.archive-name }} - path: ${{ steps.create-single-file.outputs.archive-path }} - - - id: zip_name - shell: bash - run: | - echo "zip_name=${{env.ZIP_NAME}}" >> "$GITHUB_OUTPUT" - echo "singlefile_name=${{steps.create-single-file.outputs.archive-name}}" >> "$GITHUB_OUTPUT" - userguide: - runs-on: ubuntu-latest - if: github.event_name == 'release' && github.event.action == 'created' - outputs: - pdf-name: ${{ steps.create-user-guide.outputs.pdf-name }} - - steps: - - uses: actions/checkout@v4 - - - name: Read antares-xpansion version - id: antares-xpansion-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_xpansion_version' - - - id: create-user-guide - name: user guide pdf creation - uses: ./.github/workflows/generate-userguide-pdf - with: - antares-xpansion-version: ${{steps.antares-xpansion-version.outputs.result}} - - - name: user guide upload - id: userguide_upload - uses: actions/upload-artifact@v4 - with: - name: user-guide - path: ${{ steps.create-user-guide.outputs.pdf-path }} - - upload_asset_to_release: - if: github.event_name == 'release' && github.event.action == 'created' - runs-on: ubuntu-latest - needs: [build, userguide] - env: - ZIP_NAME: ${{needs.build.outputs.zip_name}} - SINGLEFILE_NAME: ${{needs.build.outputs.singlefile_name}} - steps: - - name: Get release - id: get_release - uses: bruceadams/get-release@main - - - name: Download Artifact - uses: actions/download-artifact@v4 - with: - name: ${{env.ZIP_NAME}} - path: . - - - name: Download Artifact - uses: actions/download-artifact@v4 - with: - name: ${{env.SINGLEFILE_NAME}} - path: . - - - name: Upload Release Asset - env: - GH_REPO: ${{ github.repository }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.ZIP_NAME}} - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.SINGLEFILE_NAME}} - - ######################## \ No newline at end of file diff --git a/.github/workflows/download-extract-precompiled-libraries-tgz/action.yml b/.github/workflows/download-extract-precompiled-libraries-tgz/action.yml index 8442deff3..f6cb79f1d 100644 --- a/.github/workflows/download-extract-precompiled-libraries-tgz/action.yml +++ b/.github/workflows/download-extract-precompiled-libraries-tgz/action.yml @@ -14,17 +14,60 @@ inputs: description: 'build type' required: false default: 'Release' - variant: - description: 'extra qualifiers' - required: false - default: "" + ortools-url: + description: 'URL for OR-Tools' + required: true + ortools-dir: + description: 'Destination directory for OR-Tools' + required: true runs: using: "composite" steps: - - id: download-extract + - name: download-extract antares shell: bash run: | mkdir -p deps - wget https://github.com/AntaresSimulatorTeam/Antares_Simulator/releases/download/v${{inputs.antares-version}}/antares-${{inputs.antares-version}}-${{inputs.os-full-name}}${{inputs.variant}}.tar.gz - tar -xvf antares-${{inputs.antares-version}}-${{inputs.os-full-name}}${{inputs.variant}}.tar.gz -C deps --strip-components=1 - rm -rf antares-${{inputs.antares-version}}-${{inputs.os-full-name}}${{inputs.variant}}.tar.gz + wget https://github.com/AntaresSimulatorTeam/Antares_Simulator/releases/download/v9.2.0-api02/antares-9.2.0-rc1-${{inputs.os-full-name}}.tar.gz + tar -xvf antares-9.2.0-rc1-${{inputs.os-full-name}}.tar.gz -C deps --strip-components=1 + rm -rf antares-9.2.0-rc1-${{inputs.os-full-name}}.tar.gz + + - name: Download & extract OR-Tools + shell: bash + run: | + mkdir -p ${{inputs.ortools-dir}} + cd ${{inputs.ortools-dir}} + wget ${{inputs.ortools-url}} -O ortools.zip + unzip ortools.zip + rm ortools.zip + + #It's simpler to split each case than to try and define a general case and map OS names with Sirius asset names + - name: download-extract sirius centos + shell: bash + if: ${{ inputs.os-full-name == 'Centos-7.9.2009'}} + run: | + wget https://github.com/rte-france/sirius-solver/releases/download/antares-integration-v1.5/centos-7_sirius-solver.zip + unzip centos-7_sirius-solver.zip + cp -r centos-7_sirius-solver-install/* deps + rm -rf centos-7_sirius-solver.zip + rm -rf centos-7_sirius-solver-install + + + - name: download-extract sirius ubuntu + shell: bash + if: ${{ inputs.os-full-name == 'Ubuntu-20.04' }} + run: | + wget https://github.com/rte-france/sirius-solver/releases/download/antares-integration-v1.5/ubuntu-20.04_sirius-solver.zip + unzip ubuntu-20.04_sirius-solver.zip + cp -r ubuntu-20.04_sirius-solver-install/* deps + rm -rf ubuntu-20.04_sirius-solver.zip + rm -rf ubuntu-20.04_sirius-solver-install + + - name: download-extract sirius oracle 8 + shell: bash + if: ${{ inputs.os-full-name == 'OracleServer-8.10'}} + run: | + wget https://github.com/rte-france/sirius-solver/releases/download/antares-integration-v1.5/oraclelinux-8_sirius-solver.zip + unzip oraclelinux-8_sirius-solver.zip + cp -r oraclelinux-8_sirius-solver-install/* deps + rm -rf oraclelinux-8_sirius-solver.zip + rm -rf oraclelinux-8_sirius-solver-install \ No newline at end of file diff --git a/.github/workflows/download-extract-precompiled-libraries-zip/action.yml b/.github/workflows/download-extract-precompiled-libraries-zip/action.yml index e111cd45d..9673edccb 100644 --- a/.github/workflows/download-extract-precompiled-libraries-zip/action.yml +++ b/.github/workflows/download-extract-precompiled-libraries-zip/action.yml @@ -15,13 +15,35 @@ inputs: description: 'extra qualifiers' required: false default: "" + ortools-url: + description: 'URL for OR-Tools' + required: true + ortools-dir: + description: 'Destination directory for OR-Tools' + required: true runs: using: "composite" - steps: - - id: download-extract - shell: bash - run: | + steps: + - id: download-extract + shell: bash + run: | wget https://github.com/AntaresSimulatorTeam/Antares_Simulator/releases/download/v${{inputs.antares-version}}/rte-antares-${{inputs.antares-version}}-installer-64bits.zip unzip rte-antares-${{inputs.antares-version}}-installer-64bits.zip rm -rf rte-antares-${{inputs.antares-version}}-installer-64bits.zip + + - name: Download & extract OR-Tools + shell: bash + run: | + mkdir "${{inputs.ortools-dir}}" + cd "${{inputs.ortools-dir}}" + wget ${{inputs.ortools-url}} -O ortools.zip + unzip ortools.zip + rm ortools.zip + + - name: download-extract sirius + shell: bash + run: | + wget https://github.com/rte-france/sirius-solver/releases/download/antares-integration-v1.5/windows-latest_sirius-solver.zip + unzip windows-latest_sirius-solver.zip + rm -rf windows-latest_sirius-solver.zip \ No newline at end of file diff --git a/.github/workflows/single-file-creation-tgz/action.yml b/.github/workflows/single-file-creation-tgz/action.yml index 3b0da63e5..b0dcf848e 100644 --- a/.github/workflows/single-file-creation-tgz/action.yml +++ b/.github/workflows/single-file-creation-tgz/action.yml @@ -21,6 +21,8 @@ runs: LSB_RELEASE_VERSION_SHORT=$(lsb_release --short --release) cd _install rm -f ./antares-xpansion-launcher* + ls -l + ls -l bin pyinstaller -F ../src/python/launch.py -n antares-xpansion-launcher --add-data "../src/python/config.yaml:." --add-data "./bin/:bin" mv ./dist/antares-xpansion-launcher* . rm -rf bin diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml deleted file mode 100644 index f3b7d4d66..000000000 --- a/.github/workflows/sonarcloud.yml +++ /dev/null @@ -1,154 +0,0 @@ -name: SonarCloud - -on: - push: - branches: - - main - - develop - - release/* - - dependabot/* - pull_request: - -jobs: - sonarcloud: - name: SonarCloud - runs-on: ${{ matrix.os }} - if: "!contains(github.event.head_commit.message, '[skip ci]')" - strategy: - matrix: - os: [ ubuntu-20.04 ] - env: - VCPKG_BINARY_SOURCES: "clear;files,${{ github.workspace }}/vcpkg_cache,readwrite" - - steps: - - - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - id: sonar-install - name: Install sonar-scanner and build-wrapper - uses: SonarSource/sonarcloud-github-c-cpp@v3 - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2 - with: - key: ${{ matrix.os }}-${{ matrix.xprs.value }} - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.8 - - - name: Install gcovr - run: sudo pip install gcovr==5.0 #5.1 generate issues with sonarcloud report parsing - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip3 install -r requirements-tests.txt - - - name: Install libraries - run: | - sudo apt-get update --fix-missing - sudo apt-get install g++-10 gcc-10 libgtest-dev - sudo apt-get install -y libopenmpi-dev - cd /usr/src/googletest/ - sudo cmake . - sudo cmake --build . --target install - - - name: Update alternatives - #mpicxx uses "g++" so we need g++ to be symbolic link to g++-10 - run: | - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10 - sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 30 - sudo update-alternatives --set cc /usr/bin/gcc - sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 30 - sudo update-alternatives --set c++ /usr/bin/g++ - - - name: Read antares-solver version - id: antares-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_version' - - - name: Read antares-xpansion version - id: antares-xpansion-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_xpansion_version' - - - name: Download pre-compiled librairies - uses: ./.github/workflows/download-extract-precompiled-libraries-tgz - with: - antares-version: ${{steps.antares-version.outputs.result}} - os: ${{matrix.os}} - os-full-name: Ubuntu-20.04 - - - name: Init submodule - run: | - git submodule update --init --recursive . - - - name: vcpkg install - run: | - git submodule update --init vcpkg - ./vcpkg/bootstrap-vcpkg.sh -disableMetrics - - - name: Restore vcpkg binary dir from cache - id: cache-vcpkg-binary - uses: actions/cache/restore@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-ubuntu-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - # Allows to restore a cache when deps have only partially changed (like adding a dependency) - restore-keys: vcpkg-cache-ubuntu- - - - name: Configure - shell: bash - run: | - cmake -B _build -S . \ - -DCMAKE_C_COMPILER_LAUNCHER=ccache \ - -DCMAKE_C_COMPILER=/usr/bin/gcc-10 \ - -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ - -DCMAKE_CXX_COMPILER=/usr/bin/g++-10 \ - -DCODE_COVERAGE=ON \ - -DBUILD_TESTING=ON \ - -DBUILD_antares_solver=OFF \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_PREFIX_PATH=${{ github.workspace }}/deps \ - -DCMAKE_INSTALL_PREFIX=_install \ - -DCMAKE_EXPORT_COMPILE_COMMANDS=ON \ - -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake - - - name: Cache vcpkg binary dir - if: always() - id: save-cache-vcpkg-binary - uses: actions/cache/save@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-ubuntu-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - - - run: | - sed -i 's#: ".*/mpicxx #: "g++ #' $GITHUB_WORKSPACE/_build/compile_commands.json - - - name: Build - run: cmake --build _build --config Release -j$(nproc) - - - name: Test and generate coverage - continue-on-error: true - run: | - cd $GITHUB_WORKSPACE/_build - ctest -C Release --output-on-failure -L "unit" - - - name: Compile coverage reports - run: | - cmake --build $GITHUB_WORKSPACE/_build --target code-coverage - - - name: Run sonar-scanner - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN_2022 }} - run: sonar-scanner --define sonar.host.url="${{ env.SONAR_HOST_URL }}" \ No newline at end of file diff --git a/.github/workflows/ubuntu-system-deps-build.yml b/.github/workflows/ubuntu-system-deps-build.yml deleted file mode 100644 index cbb5ef971..000000000 --- a/.github/workflows/ubuntu-system-deps-build.yml +++ /dev/null @@ -1,129 +0,0 @@ -name: Ubuntu CI full build - -on: - push: - branches: - - ci/* - - dependabot/* - schedule: - - cron: '00 00 * * 0' # Sunday, midnight -jobs: - - build: - - runs-on: ${{ matrix.os }} - if: "!contains(github.event.head_commit.message, '[skip ci]')" - strategy: - matrix: - os: [ ubuntu-20.04 ] - env: - VCPKG_BINARY_SOURCES: "clear;files,${{ github.workspace }}/vcpkg_cache,readwrite" - - steps: - - uses: actions/checkout@v4 - with: - submodules: true - - - name: ccache - uses: hendrikmuhs/ccache-action@v1.2.3 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.8 - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-tests.txt - pip install -r requirements-ui.txt - - - name: Install mandatory system libraries - run: | - sudo apt-get update --fix-missing - sudo apt-get install g++-10 gcc-10 - - - uses: lukka/get-cmake@latest - with: - useLocalCache: false - useCloudCache: true - - - name: Update alternatives - #mpicxx uses "g++" so we need g++ to be symbolic link to g++-10 - run: | - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10 - sudo update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 30 - sudo update-alternatives --set cc /usr/bin/gcc - sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 30 - sudo update-alternatives --set c++ /usr/bin/g++ - - - name: Read antares-xpansion version - id: antares-xpansion-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_xpansion_version' - - - run: | - mkdir -p ${{ github.workspace }}/vcpkg_cache - - - run: | - mkdir -p ${{ github.workspace }}/vcpkg_cache - - - name: vcpkg install - run: | - git submodule update --remote --init vcpkg - pushd vcpkg - git fetch --unshallow - ./bootstrap-vcpkg.sh -disableMetrics - - - name: Restore vcpkg binary dir from cache - id: cache-vcpkg-binary - uses: actions/cache/restore@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-ubuntu-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - # Allows to restore a cache when deps have only partially changed (like adding a dependency) - restore-keys: vcpkg-cache-ubuntu- - - - name: Configure - run: | - cmake -B _build -S . \ - -DCMAKE_C_COMPILER_LAUNCHER=ccache \ - -DCMAKE_CXX_COMPILER_LAUNCHER=ccache \ - -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=_install \ - -DBUILD_UI=ON \ - -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake - - - name: Cache vcpkg binary dir - if: always() - id: save-cache-vcpkg-binary - uses: actions/cache/save@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-ubuntu-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - - - name: Build - run: | - cmake --build _build --config Release -j$(nproc) - cd _build - cmake --install . - - - name: Running unit tests - run: | - export PATH=${GITHUB_WORKSPACE}/_build/vcpkg_installed/x64-linux/tools/openmpi/bin/:$PATH - cd _build - ctest -C Release --output-on-failure -L "medium|unit|benders|lpnamer" - - - id: create-single-file - name: Single file .tar.gz creation - uses: ./.github/workflows/single-file-creation-tgz - with: - antares-xpansion-version: ${{steps.antares-xpansion-version.outputs.result}} - - - name: Installer .tar.gz creation - run: | - cd _build - cpack -G TGZ diff --git a/.github/workflows/windows-vcpkg-deps-build.yml b/.github/workflows/windows-vcpkg-deps-build.yml deleted file mode 100644 index b9b8c78bb..000000000 --- a/.github/workflows/windows-vcpkg-deps-build.yml +++ /dev/null @@ -1,110 +0,0 @@ -name: Windows CI full build - -on: - push: - branches: - - ci/* - - dependabot/* - schedule: - - cron: '00 00 * * 0' # Sunday, midnight -jobs: - windows: - - runs-on: ${{ matrix.os }} - if: "!contains(github.event.head_commit.message, '[skip ci]')" - strategy: - matrix: - os: [ windows-latest ] - triplet: [ x64-windows ] - - env: - # Indicates the location of the vcpkg as a Git submodule of the project repository. - VCPKG_ROOT: ${{ github.workspace }}/vcpkg - VCPKG_BINARY_SOURCES: "clear;files,${{ github.workspace }}/vcpkg_cache,readwrite" - - steps: - - uses: actions/checkout@v4 - with: - submodules: true - - - name: Enable git longpaths - run: git config --system core.longpaths true - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.x' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements-tests.txt - pip install -r requirements-ui.txt - - - name: Pre-requisites - shell: cmd - run: | - choco install wget zip unzip --no-progress - wget -nv https://github.com/microsoft/Microsoft-MPI/releases/download/v10.1.1/msmpisetup.exe - msmpisetup.exe -unattend - - - name: Read antares-xpansion version - id: antares-xpansion-version - uses: ./.github/actions/read-json-value - with: - path: 'antares-version.json' - key: 'antares_xpansion_version' - - - name: vcpkg install - shell: bash - run: | - git submodule update --remote --init vcpkg - pushd vcpkg - git fetch --unshallow - ./bootstrap-vcpkg.bat -disableMetrics - - - name: Restore vcpkg binary dir from cache - id: cache-vcpkg-binary - uses: actions/cache/restore@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-windows-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - # Allows to restore a cache when deps have only partially changed (like adding a dependency) - restore-keys: vcpkg-cache-windows - - - name: Configure - run: | - $pwd=Get-Location - cmake -B _build -S . -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE="vcpkg/scripts/buildsystems/vcpkg.cmake" -DVCPKG_TARGET_TRIPLET=${{ matrix.triplet }} -DCMAKE_INSTALL_PREFIX=_install -DBUILD_UI=ON - - - name: Cache vcpkg binary dir - if: always() - id: save-cache-vcpkg-binary - uses: actions/cache/save@v4 - with: - path: ${{ github.workspace }}/vcpkg_cache - key: vcpkg-cache-windows-${{ hashFiles('src/vcpkg.json', '.git/modules/vcpkg/HEAD') }} - - - name: Build - run: | - cmake --build _build --config Release -j4 - cd _build - cmake --install . - - - name: Running unit tests - shell: cmd - run: | - set PATH=%PATH%;C:\Program Files\Microsoft MPI\Bin\ - cd _build - ctest -C Release --output-on-failure -L "medium|unit|benders|lpnamer" - - - name: Installer .zip creation - run: | - cd _build - cpack -G ZIP - - - id: create-single-file - name: Single file .zip creation - uses: ./.github/workflows/single-file-creation-zip - with: - antares-xpansion-version: ${{steps.antares-xpansion-version.outputs.result}} \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index adef13951..53c7e4dc0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,100 +8,100 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.5) # Project configuration # =========================================================================== -PROJECT(antaresXpansion VERSION 1.3.2) +PROJECT(antaresXpansion VERSION 1.4.1) set(ANTARES_XPANSION_RC 0) # =========================================================================== # Default parameters # =========================================================================== if (MSVC) - cmake_policy(SET CMP0111 OLD) #To remove warning for not found configuration on MSVC + cmake_policy(SET CMP0111 OLD) #To remove warning for not found configuration on MSVC endif () if (CMAKE_TOOLCHAIN_FILE) - if(NOT IS_ABSOLUTE ${CMAKE_TOOLCHAIN_FILE}) - SET(CMAKE_TOOLCHAIN_FILE ${CMAKE_CURRENT_SOURCE_DIR}/${CMAKE_TOOLCHAIN_FILE}) - endif() -endif() + if (NOT IS_ABSOLUTE ${CMAKE_TOOLCHAIN_FILE}) + SET(CMAKE_TOOLCHAIN_FILE ${CMAKE_CURRENT_SOURCE_DIR}/${CMAKE_TOOLCHAIN_FILE}) + endif () +endif () set(DEFAULT_BUILD_TYPE Release) # Set Build Type -if(NOT CMAKE_BUILD_TYPE) +if (NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE ${DEFAULT_BUILD_TYPE}) -endif() +endif () # for centos docker to run MPI tests as root -IF(ALLOW_RUN_AS_ROOT) - set(ALLOW_RUN_AS_ROOT "True") -ENDIF() +IF (ALLOW_RUN_AS_ROOT) + set(ALLOW_RUN_AS_ROOT "True") +ENDIF () # Set solvers to use -option (COIN_OR "Use COIN Clp and Cbc solvers" ON) -option (XPRESS "Use solver FICO XPRESS" OFF) +option(COIN_OR "Use COIN Clp and Cbc solvers" ON) +option(XPRESS "Use solver FICO XPRESS" OFF) -if(COIN_OR) - message("Coin-OR Solvers Clp and Cbc used. Solvers version are those present in orTools release linked to project.") +if (COIN_OR) + message("Coin-OR Solvers Clp and Cbc used. Solvers version are those present in orTools release linked to project.") else () - message(FATAL_ERRROR "COIN_OR has to be true, it is required in lpnamer module of Antares Xpansion.") -endif() + message(FATAL_ERRROR "COIN_OR has to be true, it is required in lpnamer module of Antares Xpansion.") +endif () # =========================================================================== # CMAKE ADDITIONAL MODULES # =========================================================================== -LIST (APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) +LIST(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) -set(CMAKE_INSTALL_RPATH $ORIGIN) +set(CMAKE_INSTALL_RPATH $ORIGIN) # =========================================================================== # Compiler options # =========================================================================== -set (EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}) -set (LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}) +set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}) +set(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}) set(CMAKE_CXX_STANDARD 20) -set (CMAKE_EXPORT_COMPILE_COMMANDS ON) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) if (MSVC) - message ("WINDOWS") - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc") + message("WINDOWS") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc") - set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MD") - set (RUNTIME_IGNORE_LIST_RELEASE "/NODEFAULTLIB:msvcrtd.lib /NODEFAULTLIB:msvcprtd.lib /NODEFAULTLIB:libcmtd.lib") - set (CMAKE_EXE_LINKER_FLAGS_RELEASE " ${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${RUNTIME_IGNORE_LIST_RELEASE}") - set (CMAKE_SHARED_LINKER_FLAGS_RELEASE " ${CMAKE_SHARED_LINKER_FLAGS_RELEASE} ${RUNTIME_IGNORE_LIST_RELEASE}") - set (CMAKE_STATIC_LINKER_FLAGS_RELEASE " ${CMAKE_STATIC_LINKER_FLAGS_RELEASE} ${RUNTIME_IGNORE_LIST_RELEASE}") + set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /MD") + set(RUNTIME_IGNORE_LIST_RELEASE "/NODEFAULTLIB:msvcrtd.lib /NODEFAULTLIB:msvcprtd.lib /NODEFAULTLIB:libcmtd.lib") + set(CMAKE_EXE_LINKER_FLAGS_RELEASE " ${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${RUNTIME_IGNORE_LIST_RELEASE}") + set(CMAKE_SHARED_LINKER_FLAGS_RELEASE " ${CMAKE_SHARED_LINKER_FLAGS_RELEASE} ${RUNTIME_IGNORE_LIST_RELEASE}") + set(CMAKE_STATIC_LINKER_FLAGS_RELEASE " ${CMAKE_STATIC_LINKER_FLAGS_RELEASE} ${RUNTIME_IGNORE_LIST_RELEASE}") - set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MDd") - set (CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /EHsc") + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /MDd") + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /EHsc") else () - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g") - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -fmessage-length=0 -fPIC") - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-conversion -Wno-sign-compare") - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-strict-aliasing -Wno-unused-parameter") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -fmessage-length=0 -fPIC") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-conversion -Wno-sign-compare") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-strict-aliasing -Wno-unused-parameter") endif () -message ("cmake_build_type : ${CMAKE_BUILD_TYPE}") -message ("CMAKE_BINARY_DIR : ${CMAKE_BINARY_DIR}") -message ("CMAKE_SOURCE_DIR : ${CMAKE_SOURCE_DIR}") -message ("CMAKE_C_COMPILER_VERSION : ${CMAKE_C_COMPILER_VERSION}") -message ("CMAKE_CXX_COMPILER_VERSION : ${CMAKE_CXX_COMPILER_VERSION}") +message("cmake_build_type : ${CMAKE_BUILD_TYPE}") +message("CMAKE_BINARY_DIR : ${CMAKE_BINARY_DIR}") +message("CMAKE_SOURCE_DIR : ${CMAKE_SOURCE_DIR}") +message("CMAKE_C_COMPILER_VERSION : ${CMAKE_C_COMPILER_VERSION}") +message("CMAKE_CXX_COMPILER_VERSION : ${CMAKE_CXX_COMPILER_VERSION}") if (CODE_COVERAGE) - # if code-coverage is ON, force tests build - set(BUILD_TESTING ON) + # if code-coverage is ON, force tests build + set(BUILD_TESTING ON) - include(CodeCoverage) - code_coverage(NAME code-coverage - OUTPUT_DIR coverage - EXCLUDE_DIRS tests) + include(CodeCoverage) + code_coverage(NAME code-coverage + OUTPUT_DIR coverage + EXCLUDE_DIRS tests) endif () # =========================================================================== @@ -111,37 +111,6 @@ endif () include("cmake/utils.cmake") include("cmake/json-cmake-1.1.0/JSONParser.cmake") -#Define deps install directory -if (NOT DEPS_INSTALL_DIR) - SET(DEPS_INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../rte-antares-deps-${CMAKE_BUILD_TYPE}) -else() - if(NOT IS_ABSOLUTE ${DEPS_INSTALL_DIR}) - SET(DEPS_INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/${DEPS_INSTALL_DIR}) - endif() -endif() - -# Build Needed dependencies -list(APPEND CMAKE_PREFIX_PATH ${DEPS_INSTALL_DIR}) - -# Add DEPS_INSTALL_DIR with antares-simulator CMAKE_BUILD_TYPE special case -if (${CMAKE_BUILD_TYPE} STREQUAL "Release") - - string(REPLACE ${CMAKE_BUILD_TYPE} release - DEPS_INSTALL_DIR_ANTARES - ${DEPS_INSTALL_DIR}) - - list(APPEND CMAKE_PREFIX_PATH ${DEPS_INSTALL_DIR_ANTARES}) - -elseif(${CMAKE_BUILD_TYPE} STREQUAL "Debug") - - string(REPLACE ${CMAKE_BUILD_TYPE} debug - DEPS_INSTALL_DIR_ANTARES - ${DEPS_INSTALL_DIR}) - - list(APPEND CMAKE_PREFIX_PATH ${DEPS_INSTALL_DIR_ANTARES}) - -endif() - file(READ antares-version.json jsonContent) sbeParseJson(antares_version jsonContent) @@ -155,31 +124,64 @@ sbeClearJson(antares_version) # Build dependencies not handled by antares-deps repository option(BUILD_antares_solver "Build antares solver" ON) message(STATUS "Build antares solver: ${BUILD_antares_solver}") - +set(CMAKE_MAP_IMPORTED_CONFIG_RELWITHDEBINFO RELEASE DEBUG) if (${BUILD_antares_solver}) - #check if antares_solver available before asking for sirius and ortools build - find_package(antares-solver QUIET) - if (NOT antares-solver_FOUND) - set(BUILD_sirius ON) - set(BUILD_ortools ON) - endif() -endif() - -message(STATUS "Build type is ${CMAKE_BUILD_TYPE}") -add_subdirectory(cmake/dependencies ${CMAKE_CURRENT_BINARY_DIR}/build_deps) -find_package(antares-solver REQUIRED) + #check if antares_solver available before asking for sirius and ortools build + find_package(Antares QUIET) + if (NOT Antares_FOUND) + message(WARNING "Antares solver not found, will be build") + set(BUILD_sirius ON) + set(BUILD_ortools ON) + if (NOT Antares_FOUND) + message(STATUS "Antares not found, building it from source") + #Define deps install directory + if (NOT DEPS_INSTALL_DIR) + SET(DEPS_INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../rte-antares-deps-${CMAKE_BUILD_TYPE}) + else () + if (NOT IS_ABSOLUTE ${DEPS_INSTALL_DIR}) + SET(DEPS_INSTALL_DIR ${CMAKE_CURRENT_SOURCE_DIR}/${DEPS_INSTALL_DIR}) + endif () + endif () + + # Build Needed dependencies + list(APPEND CMAKE_PREFIX_PATH ${DEPS_INSTALL_DIR}) + + # Add DEPS_INSTALL_DIR with antares-simulator CMAKE_BUILD_TYPE special case + if (${CMAKE_BUILD_TYPE} STREQUAL "Release") + + string(REPLACE ${CMAKE_BUILD_TYPE} release + DEPS_INSTALL_DIR_ANTARES + ${DEPS_INSTALL_DIR}) + + list(APPEND CMAKE_PREFIX_PATH ${DEPS_INSTALL_DIR_ANTARES}) + + elseif (${CMAKE_BUILD_TYPE} STREQUAL "Debug") + + string(REPLACE ${CMAKE_BUILD_TYPE} debug + DEPS_INSTALL_DIR_ANTARES + ${DEPS_INSTALL_DIR}) + + list(APPEND CMAKE_PREFIX_PATH ${DEPS_INSTALL_DIR_ANTARES}) + + endif () + add_subdirectory(cmake/dependencies ${CMAKE_CURRENT_BINARY_DIR}/build_deps) + endif () + endif () +endif () +find_package(Antares REQUIRED) message(STATUS "Build type is ${CMAKE_BUILD_TYPE}") +set(CMAKE_FIND_DEBUG_MODE false) find_package(minizip-ng REQUIRED) # --------------------------------------------------------------------------- # Boost # --------------------------------------------------------------------------- -find_package (Boost REQUIRED COMPONENTS program_options) - +find_package(Boost REQUIRED COMPONENTS program_options) + # ugly fix required due to conan packages and policies vs. boost brainfucking name rules if (MSVC) - list(APPEND CMAKE_FIND_LIBRARY_PREFIXES "" "lib") + list(APPEND CMAKE_FIND_LIBRARY_PREFIXES "" "lib") endif () find_package(MPI REQUIRED) @@ -191,16 +193,22 @@ message(STATUS "Boost_SERIALIZATION_LIBRARY : " ${Boost_SERIALIZATION_LIBRARY}) message(STATUS "BOOST_LIBRARIES : " ${Boost_INCLUDE_DIRS}) install(FILES - $ - $ - $ - DESTINATION bin) + $ + $ + $ + DESTINATION bin) + +find_package(ittapi REQUIRED) +install(FILES + $ + DESTINATION bin +) # --------------------------------------------------------------------------- # Threads # --------------------------------------------------------------------------- if (CMAKE_SYSTEM_NAME STREQUAL Linux) - set(THREADS_PREFER_PTHREAD_FLAG ON) + set(THREADS_PREFER_PTHREAD_FLAG ON) endif () find_package(Threads REQUIRED) @@ -214,45 +222,39 @@ find_package(Clp REQUIRED) find_package(CoinUtils REQUIRED) find_package(Osi REQUIRED) -if(POLICY CMP0074) - cmake_policy(SET CMP0074 NEW) -endif() +if (POLICY CMP0074) + cmake_policy(SET CMP0074 NEW) +endif () -find_package(sirius_solver REQUIRED) -install(FILES - $ - DESTINATION bin -) if (SOLVER) - if (SOLVER STREQUAL "xpress") - add_definitions (-DXPRESS_SOLVER -DUSE_XPRESS) - elseif (SOLVER STREQUAL "coin")#already achieved by default through ORTOOLS_DEFINITIONS - add_definitions (-DUSE_CBC -DUSE_CLP) - else () - message (FATAL_ERROR "unsupported value, ${SOLVER}, for solver option.") - endif () -endif() + if (SOLVER STREQUAL "xpress") + add_definitions(-DXPRESS_SOLVER -DUSE_XPRESS) + elseif (SOLVER STREQUAL "coin")#already achieved by default through ORTOOLS_DEFINITIONS + add_definitions(-DUSE_CBC -DUSE_CLP) + else () + message(FATAL_ERROR "unsupported value, ${SOLVER}, for solver option.") + endif () +endif () find_package(jsoncpp CONFIG REQUIRED) if (MSVC) - set(JSONCPP_LIB jsoncpp_lib) + set(JSONCPP_LIB jsoncpp_lib) else () - set(JSONCPP_LIB jsoncpp_static) + set(JSONCPP_LIB jsoncpp_static) endif () message("Using jsoncpp target ${JSONCPP_LIB}") install(FILES - $ - DESTINATION bin + $ + DESTINATION bin ) ## Coin-OR (Clp and CBC solvers) -if(COIN_OR) - message("COIN-OR is ${COIN_OR}") - # Add solver variables for usage in C++ source code - add_definitions( -DCOIN_OR=true ) -endif(COIN_OR) - +if (COIN_OR) + message("COIN-OR is ${COIN_OR}") + # Add solver variables for usage in C++ source code + add_definitions(-DCOIN_OR=true) +endif (COIN_OR) # =========================================================================== @@ -261,50 +263,55 @@ endif(COIN_OR) option(BUILD_UI "Build antares-xpansion ui" OFF) option(BUILD_TESTING "Activates unit tests building" OFF) -if(WIN32) - set(CURRENT_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}) -else() - set(CURRENT_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) -endif() +if (WIN32) + set(CURRENT_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}) +else () + set(CURRENT_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}) +endif () find_package(antares-solver REQUIRED) #Default RELEASE antares-solver use -get_target_property( ANTARES_SOLVER_PATH antares-solver IMPORTED_LOCATION_RELEASE ) +get_target_property(ANTARES_SOLVER_PATH antares-solver IMPORTED_LOCATION_RELEASE) if (NOT ANTARES_SOLVER_PATH) - get_target_property( ANTARES_SOLVER_PATH antares-solver IMPORTED_LOCATION_DEBUG ) -endif() + get_target_property(ANTARES_SOLVER_PATH antares-solver IMPORTED_LOCATION_DEBUG) +endif () get_filename_component(ANTARES_SOLVER_DIR ${ANTARES_SOLVER_PATH} DIRECTORY) get_filename_component(ANTARES_SOLVER_APP ${ANTARES_SOLVER_PATH} NAME) #Copy antares-solver to build directory FILE(COPY ${ANTARES_SOLVER_PATH} - DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} - USE_SOURCE_PERMISSIONS) - + DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} + USE_SOURCE_PERMISSIONS) + #Copy associated .so and .dll to build directory -FILE(COPY ${ANTARES_SOLVER_DIR}/ - DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} - USE_SOURCE_PERMISSIONS - FILES_MATCHING PATTERN "*.dll") +FILE(COPY ${ANTARES_SOLVER_DIR}/ + DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.dll") FILE(COPY ${ANTARES_SOLVER_DIR}/ - DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} - USE_SOURCE_PERMISSIONS - FILES_MATCHING PATTERN "*.so") + DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.so") FILE(COPY ${ANTARES_SOLVER_DIR}/../lib/ - DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} - USE_SOURCE_PERMISSIONS - FILES_MATCHING PATTERN "*.so") + DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.so") -add_subdirectory ("${PROJECT_SOURCE_DIR}/src") +FILE(COPY ${ANTARES_SOLVER_DIR}/../bin/ + DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.so") -if(BUILD_TESTING) - enable_testing() - add_subdirectory("${PROJECT_SOURCE_DIR}/tests") -endif() +add_subdirectory("${PROJECT_SOURCE_DIR}/src") + +if (BUILD_TESTING) + enable_testing() + add_subdirectory("${PROJECT_SOURCE_DIR}/tests") +endif () # =========================================================================== @@ -312,63 +319,69 @@ endif() # =========================================================================== if (USER_GUIDE_PATH) - install(FILES ${USER_GUIDE_PATH} DESTINATION .) -endif() + install(FILES ${USER_GUIDE_PATH} DESTINATION .) +endif () -install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/examples/" DESTINATION examples) +#install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/examples/" DESTINATION examples) if (WIN32) - cmake_path(GET MPIEXEC_EXECUTABLE PARENT_PATH MPI_BIN_DIR) - - #Copy associated .so and .dll to build directory - FILE(COPY ${MPI_BIN_DIR}/ - DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} - USE_SOURCE_PERMISSIONS) - find_file(msmpi_dll NAMES msmpi.dll REGISTRY_VIEW HOST) - - install(DIRECTORY ${CURRENT_RUNTIME_OUTPUT_DIRECTORY}/ - TYPE BIN - USE_SOURCE_PERMISSIONS - FILES_MATCHING PATTERN "*.dll") - - install(FILES - ${MPI_msmpi_LIBRARY} - ${msmpi_dll} - DESTINATION bin - ) - - install(DIRECTORY ${MPI_BIN_DIR}/ - TYPE BIN) -endif() + cmake_path(GET MPIEXEC_EXECUTABLE PARENT_PATH MPI_BIN_DIR) + + #Copy associated .so and .dll to build directory + FILE(COPY ${MPI_BIN_DIR}/ + DESTINATION ${CURRENT_RUNTIME_OUTPUT_DIRECTORY} + USE_SOURCE_PERMISSIONS) + find_file(msmpi_dll NAMES msmpi.dll REGISTRY_VIEW HOST) + + install(DIRECTORY ${CURRENT_RUNTIME_OUTPUT_DIRECTORY}/ + TYPE BIN + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.dll") + + install(FILES + ${MPI_msmpi_LIBRARY} + ${msmpi_dll} + DESTINATION bin + ) + + install(DIRECTORY ${MPI_BIN_DIR}/ + TYPE BIN) +endif () install(DIRECTORY ${ANTARES_SOLVER_DIR}/ - TYPE BIN - USE_SOURCE_PERMISSIONS - FILES_MATCHING PATTERN "*.dll") - + TYPE BIN + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.dll") + install(DIRECTORY ${ANTARES_SOLVER_DIR}/../lib/ - TYPE BIN - USE_SOURCE_PERMISSIONS - FILES_MATCHING PATTERN "*.so") + TYPE BIN + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.so") + +#Mostly for sirius +install(DIRECTORY ${ANTARES_SOLVER_DIR}/../bin/ + TYPE BIN + USE_SOURCE_PERMISSIONS + FILES_MATCHING PATTERN "*.so") install(PROGRAMS ${ANTARES_SOLVER_PATH} - TYPE BIN) + TYPE BIN) -include (InstallRequiredSystemLibraries) +include(InstallRequiredSystemLibraries) -if(CMAKE_SYSTEM_NAME MATCHES "Linux") +if (CMAKE_SYSTEM_NAME MATCHES "Linux") get_linux_lsb_release_information() message(STATUS "Linux ${LSB_RELEASE_ID_SHORT} ${LSB_RELEASE_VERSION_SHORT} ${LSB_RELEASE_CODENAME_SHORT}") set(CPACK_SYSTEM_NAME "${LSB_RELEASE_ID_SHORT}-${LSB_RELEASE_VERSION_SHORT}") -endif() +endif () set(CPACK_PROJECT_NAME "antaresXpansion") set(CPACK_PACKAGE_NAME "${CPACK_PROJECT_NAME}") -if(XPRESS) -set(CPACK_PACKAGE_NAME "${CPACK_PACKAGE_NAME}-xpress") -endif(XPRESS) +if (XPRESS) + set(CPACK_PACKAGE_NAME "${CPACK_PACKAGE_NAME}-xpress") +endif (XPRESS) set(CPACK_DEBIAN_PACKAGE_MAINTAINER "RTE") @@ -378,8 +391,8 @@ set(CPACK_RPM_PACKAGE_REQUIRES "openmpi,jsoncpp,boost-openmpi") set(CPACK_RPM_PACKAGE_AUTOREQPROV "0") if (ANTARES_XPANSION_RC) - set(CPACK_PACKAGE_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}-rc${ANTARES_XPANSION_RC}") -endif() + set(CPACK_PACKAGE_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}-rc${ANTARES_XPANSION_RC}") +endif () #version file to define Xpansion and Antares-simulator versions configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/python/antares_xpansion/__version__.py.in ${CMAKE_CURRENT_SOURCE_DIR}/src/python/antares_xpansion/__version__.py) diff --git a/antares-version.json b/antares-version.json index 96d894658..332b5d58f 100644 --- a/antares-version.json +++ b/antares-version.json @@ -1,6 +1,5 @@ { - "antares_version": "9.1.0", - "antares_version_executable": "9.1", - "antares_xpansion_version": "1.3.2", + "antares_version": "9.2.0-rc1", + "antares_version_executable": "9.2", "minizip_ng_version": "3.0.6" } diff --git a/cmake/dependencies/CMakeLists.txt b/cmake/dependencies/CMakeLists.txt index bc36e06d2..07c03d2e2 100644 --- a/cmake/dependencies/CMakeLists.txt +++ b/cmake/dependencies/CMakeLists.txt @@ -3,10 +3,10 @@ ##################### if(BUILD_antares_solver) -find_package(antares-solver QUIET) - -if (NOT antares-solver_FOUND) +find_package(Antares) +if (NOT Antares_FOUND) + message(STATUS "Antares not found, building it from source") set(REPOSITORY "https://github.com/AntaresSimulatorTeam/Antares_Simulator.git") set(TAG "v${ANTARES_VERSION_TAG}") set(CMAKE_ARGS "-DBUILD_UI=OFF -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE} -DDEPS_INSTALL_DIR=${DEPS_INSTALL_DIR} -DBUILD_not_system=OFF -DBUILD_ortools=ON") diff --git a/cmake/dependencies/CMakeLists.txt.in b/cmake/dependencies/CMakeLists.txt.in index 32440be93..543be75ae 100644 --- a/cmake/dependencies/CMakeLists.txt.in +++ b/cmake/dependencies/CMakeLists.txt.in @@ -16,7 +16,7 @@ ExternalProject_Add(${PROJECT_NAME}_project GIT_REPOSITORY "@GIT_DEP_REPOSITORY@" GIT_TAG "@GIT_DEP_TAG@" LOG_DOWNLOAD FALSE - GIT_SUBMODULES src/antares-deps + GIT_SUBMODULES vcpkg # UPDATE_COMMAND "" LOG_UPDATE FALSE diff --git a/conception/Architecture_decision_records/Change_xpansion_nominal_case_to_use_simulator_lib.md b/conception/Architecture_decision_records/Change_xpansion_nominal_case_to_use_simulator_lib.md new file mode 100644 index 000000000..531683937 --- /dev/null +++ b/conception/Architecture_decision_records/Change_xpansion_nominal_case_to_use_simulator_lib.md @@ -0,0 +1,27 @@ +# Change Xpansion nominal case to use Antares as a library + +## Accepted [09 Feb 2024] (Partial) + +## Context + +The current nominal case is to execute Antares which outputs MPS files and reads them in subsequent xpansion component ( +lpnamer). +Having to write files to reread them is a performance pitfall. +A way to address this is to have Antares work as a lib linked by Xpansion components. This way problems data can be +shared +through API calls and common interfaces or data structures. + +## Decision + +- Make a lib of Antares and expose an API to retrieve problems data +- Link to this API in Xpansion and retrieve data through said API instead of reading files +- Handle this case as the nominal case for an Xpansion execution, mainly with Launcher.py + +Note: 20 Feb. 2024: awaiting full readiness of study/API mode, archive mode is maintained in the meantime + +## Consequences + +- No intermediate files written between Antares and Xpansion +- Improve performance in data transmission between components +- Antares' simulation performed in Xpansion executable. It Could lead to decreasing performance with MPI if an MPI process + is running in only one core. Meaning, Antares simulation will not be or poorly parallelized. Must be studied and evaluated. diff --git a/conception/Architecture_decision_records/Keep_file_mode_support_in_pbgen.md b/conception/Architecture_decision_records/Keep_file_mode_support_in_pbgen.md new file mode 100644 index 000000000..b5c97cf49 --- /dev/null +++ b/conception/Architecture_decision_records/Keep_file_mode_support_in_pbgen.md @@ -0,0 +1,20 @@ +# Keep file mode support in problem generation + +## Accepted [09 Feb 2024] + +## Context + +Given that the new nominal case is [to use Antares as a library](Change_xpansion_nomila_case_to_use_simulator_lib.md) we +could remove +support for file mode in problem generation. However, it can be useful to keep this mode for debugging purpose where we +want to compare problems from Antares (written as files) and debug lpnamer. One case particularly would be if +Antares simulation +takes a lot of time, in this case we may want to write mps files to prevent rerunning Antares simulation each time + +## Decision + +Keep support for file mode in lpnamer + +## Consequences + +- Keep the possibility to debug lpnamer using mps file diff --git a/conception/Architecture_decision_records/Remove_archive_and_file_support_in_launcher.md b/conception/Architecture_decision_records/Remove_archive_and_file_support_in_launcher.md new file mode 100644 index 000000000..b0dcb1ac9 --- /dev/null +++ b/conception/Architecture_decision_records/Remove_archive_and_file_support_in_launcher.md @@ -0,0 +1,22 @@ +# Remove archive and file support in Launcher + +## Accepted [09 Feb 2024] (Partial) + +## Context + +Launcher (python components) is becoming more and more complex. +Given that Launcher is used for the Xpansion business case +(by opposition to R&D) and +that [the nominal case is to use Antares as a lib](Change_xpansion_nomila_case_to_use_simulator_lib.md) +it is not necessary to support archive mode or file mode in Launcher + +## Decision + +- Remove archive mode in launcher +- Remove file mode in launcher + +Note: 20 Feb. 2024: awaiting full readiness of study/API mode, archive mode is maintained in the meantime + +## Consequences + +Simplify and clarify Launcher code and usage diff --git a/conception/Architecture_decision_records/Remove_archive_support_in_pb_gen.md b/conception/Architecture_decision_records/Remove_archive_support_in_pb_gen.md new file mode 100644 index 000000000..7b6fec01c --- /dev/null +++ b/conception/Architecture_decision_records/Remove_archive_support_in_pb_gen.md @@ -0,0 +1,22 @@ +# Remove archive support in problem generation + +## Accepted [09 Feb 2024] (Partial) + +## Context + +Given that the new nominal case is [to use Antares as a library](Change_xpansion_nomila_case_to_use_simulator_lib.md) we +could remove +support for archive mode in problem generation. Given that archive mode was a way to reduce the size on disk and now +memory mode +completely remove the need to use file we can remove support of archive file as "input" of problem generation or as +output + +## Decision + +Remove archive support in problem generation + +Note: 20 Feb. 2024: awaiting full readiness of study/API mode, archive mode is maintained in the meantime + +## Consequences + +- Fewer cases to maintain diff --git a/data_test/tests_lpnamer/SmallTestFiveCandidates/output/simulation/README.md b/data_test/tests_lpnamer/SmallTestFiveCandidates/output/simulation/README.md new file mode 100644 index 000000000..908e653bd --- /dev/null +++ b/data_test/tests_lpnamer/SmallTestFiveCandidates/output/simulation/README.md @@ -0,0 +1,3 @@ +Generated with 1.3.0 ubuntu + +Manually change header. Changing "Pb" for "ClpDefau" \ No newline at end of file diff --git a/data_test/tests_lpnamer/SmallTestFiveCandidates/output/simulation/reference_lp/problem-1-1--optim-nb-1.mps b/data_test/tests_lpnamer/SmallTestFiveCandidates/output/simulation/reference_lp/problem-1-1--optim-nb-1.mps index a8fd01aad..50bb0686a 100644 --- a/data_test/tests_lpnamer/SmallTestFiveCandidates/output/simulation/reference_lp/problem-1-1--optim-nb-1.mps +++ b/data_test/tests_lpnamer/SmallTestFiveCandidates/output/simulation/reference_lp/problem-1-1--optim-nb-1.mps @@ -18878,8 +18878,10 @@ COLUMNS NTCDirect::link::hour<144> R0004496 1 NTCDirect::link::hour<144> AreaBalance::area::hour<144> 1 NTCDirect::link::hour<144> AreaBalance::area::hour<144> -1 + NTCDirect::link::hour<144> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<144> AreaBalance::area::hour<144> 1 NTCDirect::link::hour<144> AreaBalance::area::hour<144> -1 + NTCDirect::link::hour<144> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<144> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<144> AreaBalance::area::hour<144> -1 DispatchableProduction::area::ThermalCluster::hour<144> FictiveLoads::area::hour<144> -1 @@ -18973,8 +18975,10 @@ COLUMNS NTCDirect::link::hour<145> R0004498 1 NTCDirect::link::hour<145> AreaBalance::area::hour<145> 1 NTCDirect::link::hour<145> AreaBalance::area::hour<145> -1 + NTCDirect::link::hour<145> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<145> AreaBalance::area::hour<145> 1 NTCDirect::link::hour<145> AreaBalance::area::hour<145> -1 + NTCDirect::link::hour<145> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<145> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<145> AreaBalance::area::hour<145> -1 DispatchableProduction::area::ThermalCluster::hour<145> FictiveLoads::area::hour<145> -1 @@ -19068,8 +19072,10 @@ COLUMNS NTCDirect::link::hour<146> R0004500 1 NTCDirect::link::hour<146> AreaBalance::area::hour<146> 1 NTCDirect::link::hour<146> AreaBalance::area::hour<146> -1 + NTCDirect::link::hour<146> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<146> AreaBalance::area::hour<146> 1 NTCDirect::link::hour<146> AreaBalance::area::hour<146> -1 + NTCDirect::link::hour<146> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<146> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<146> AreaBalance::area::hour<146> -1 DispatchableProduction::area::ThermalCluster::hour<146> FictiveLoads::area::hour<146> -1 @@ -19163,8 +19169,10 @@ COLUMNS NTCDirect::link::hour<147> R0004502 1 NTCDirect::link::hour<147> AreaBalance::area::hour<147> 1 NTCDirect::link::hour<147> AreaBalance::area::hour<147> -1 + NTCDirect::link::hour<147> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<147> AreaBalance::area::hour<147> 1 NTCDirect::link::hour<147> AreaBalance::area::hour<147> -1 + NTCDirect::link::hour<147> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<147> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<147> AreaBalance::area::hour<147> -1 DispatchableProduction::area::ThermalCluster::hour<147> FictiveLoads::area::hour<147> -1 @@ -19258,8 +19266,10 @@ COLUMNS NTCDirect::link::hour<148> R0004504 1 NTCDirect::link::hour<148> AreaBalance::area::hour<148> 1 NTCDirect::link::hour<148> AreaBalance::area::hour<148> -1 + NTCDirect::link::hour<148> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<148> AreaBalance::area::hour<148> 1 NTCDirect::link::hour<148> AreaBalance::area::hour<148> -1 + NTCDirect::link::hour<148> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<148> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<148> AreaBalance::area::hour<148> -1 DispatchableProduction::area::ThermalCluster::hour<148> FictiveLoads::area::hour<148> -1 @@ -19353,8 +19363,10 @@ COLUMNS NTCDirect::link::hour<149> R0004506 1 NTCDirect::link::hour<149> AreaBalance::area::hour<149> 1 NTCDirect::link::hour<149> AreaBalance::area::hour<149> -1 + NTCDirect::link::hour<149> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<149> AreaBalance::area::hour<149> 1 NTCDirect::link::hour<149> AreaBalance::area::hour<149> -1 + NTCDirect::link::hour<149> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<149> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<149> AreaBalance::area::hour<149> -1 DispatchableProduction::area::ThermalCluster::hour<149> FictiveLoads::area::hour<149> -1 @@ -19448,8 +19460,10 @@ COLUMNS NTCDirect::link::hour<150> R0004508 1 NTCDirect::link::hour<150> AreaBalance::area::hour<150> 1 NTCDirect::link::hour<150> AreaBalance::area::hour<150> -1 + NTCDirect::link::hour<150> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<150> AreaBalance::area::hour<150> 1 NTCDirect::link::hour<150> AreaBalance::area::hour<150> -1 + NTCDirect::link::hour<150> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<150> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<150> AreaBalance::area::hour<150> -1 DispatchableProduction::area::ThermalCluster::hour<150> FictiveLoads::area::hour<150> -1 @@ -19543,8 +19557,10 @@ COLUMNS NTCDirect::link::hour<151> R0004510 1 NTCDirect::link::hour<151> AreaBalance::area::hour<151> 1 NTCDirect::link::hour<151> AreaBalance::area::hour<151> -1 + NTCDirect::link::hour<151> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<151> AreaBalance::area::hour<151> 1 NTCDirect::link::hour<151> AreaBalance::area::hour<151> -1 + NTCDirect::link::hour<151> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<151> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<151> AreaBalance::area::hour<151> -1 DispatchableProduction::area::ThermalCluster::hour<151> FictiveLoads::area::hour<151> -1 @@ -19638,8 +19654,10 @@ COLUMNS NTCDirect::link::hour<152> R0004512 1 NTCDirect::link::hour<152> AreaBalance::area::hour<152> 1 NTCDirect::link::hour<152> AreaBalance::area::hour<152> -1 + NTCDirect::link::hour<152> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<152> AreaBalance::area::hour<152> 1 NTCDirect::link::hour<152> AreaBalance::area::hour<152> -1 + NTCDirect::link::hour<152> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<152> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<152> AreaBalance::area::hour<152> -1 DispatchableProduction::area::ThermalCluster::hour<152> FictiveLoads::area::hour<152> -1 @@ -19733,8 +19751,10 @@ COLUMNS NTCDirect::link::hour<153> R0004514 1 NTCDirect::link::hour<153> AreaBalance::area::hour<153> 1 NTCDirect::link::hour<153> AreaBalance::area::hour<153> -1 + NTCDirect::link::hour<153> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<153> AreaBalance::area::hour<153> 1 NTCDirect::link::hour<153> AreaBalance::area::hour<153> -1 + NTCDirect::link::hour<153> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<153> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<153> AreaBalance::area::hour<153> -1 DispatchableProduction::area::ThermalCluster::hour<153> FictiveLoads::area::hour<153> -1 @@ -19828,8 +19848,10 @@ COLUMNS NTCDirect::link::hour<154> R0004516 1 NTCDirect::link::hour<154> AreaBalance::area::hour<154> 1 NTCDirect::link::hour<154> AreaBalance::area::hour<154> -1 + NTCDirect::link::hour<154> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<154> AreaBalance::area::hour<154> 1 NTCDirect::link::hour<154> AreaBalance::area::hour<154> -1 + NTCDirect::link::hour<154> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<154> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<154> AreaBalance::area::hour<154> -1 DispatchableProduction::area::ThermalCluster::hour<154> FictiveLoads::area::hour<154> -1 @@ -19923,8 +19945,10 @@ COLUMNS NTCDirect::link::hour<155> R0004518 1 NTCDirect::link::hour<155> AreaBalance::area::hour<155> 1 NTCDirect::link::hour<155> AreaBalance::area::hour<155> -1 + NTCDirect::link::hour<155> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<155> AreaBalance::area::hour<155> 1 NTCDirect::link::hour<155> AreaBalance::area::hour<155> -1 + NTCDirect::link::hour<155> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<155> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<155> AreaBalance::area::hour<155> -1 DispatchableProduction::area::ThermalCluster::hour<155> FictiveLoads::area::hour<155> -1 @@ -20018,8 +20042,10 @@ COLUMNS NTCDirect::link::hour<156> R0004520 1 NTCDirect::link::hour<156> AreaBalance::area::hour<156> 1 NTCDirect::link::hour<156> AreaBalance::area::hour<156> -1 + NTCDirect::link::hour<156> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<156> AreaBalance::area::hour<156> 1 NTCDirect::link::hour<156> AreaBalance::area::hour<156> -1 + NTCDirect::link::hour<156> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<156> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<156> AreaBalance::area::hour<156> -1 DispatchableProduction::area::ThermalCluster::hour<156> FictiveLoads::area::hour<156> -1 @@ -20113,8 +20139,10 @@ COLUMNS NTCDirect::link::hour<157> R0004522 1 NTCDirect::link::hour<157> AreaBalance::area::hour<157> 1 NTCDirect::link::hour<157> AreaBalance::area::hour<157> -1 + NTCDirect::link::hour<157> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<157> AreaBalance::area::hour<157> 1 NTCDirect::link::hour<157> AreaBalance::area::hour<157> -1 + NTCDirect::link::hour<157> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<157> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<157> AreaBalance::area::hour<157> -1 DispatchableProduction::area::ThermalCluster::hour<157> FictiveLoads::area::hour<157> -1 @@ -20208,8 +20236,10 @@ COLUMNS NTCDirect::link::hour<158> R0004524 1 NTCDirect::link::hour<158> AreaBalance::area::hour<158> 1 NTCDirect::link::hour<158> AreaBalance::area::hour<158> -1 + NTCDirect::link::hour<158> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<158> AreaBalance::area::hour<158> 1 NTCDirect::link::hour<158> AreaBalance::area::hour<158> -1 + NTCDirect::link::hour<158> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<158> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<158> AreaBalance::area::hour<158> -1 DispatchableProduction::area::ThermalCluster::hour<158> FictiveLoads::area::hour<158> -1 @@ -20303,8 +20333,10 @@ COLUMNS NTCDirect::link::hour<159> R0004526 1 NTCDirect::link::hour<159> AreaBalance::area::hour<159> 1 NTCDirect::link::hour<159> AreaBalance::area::hour<159> -1 + NTCDirect::link::hour<159> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<159> AreaBalance::area::hour<159> 1 NTCDirect::link::hour<159> AreaBalance::area::hour<159> -1 + NTCDirect::link::hour<159> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<159> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<159> AreaBalance::area::hour<159> -1 DispatchableProduction::area::ThermalCluster::hour<159> FictiveLoads::area::hour<159> -1 @@ -20398,8 +20430,10 @@ COLUMNS NTCDirect::link::hour<160> R0004528 1 NTCDirect::link::hour<160> AreaBalance::area::hour<160> 1 NTCDirect::link::hour<160> AreaBalance::area::hour<160> -1 + NTCDirect::link::hour<160> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<160> AreaBalance::area::hour<160> 1 NTCDirect::link::hour<160> AreaBalance::area::hour<160> -1 + NTCDirect::link::hour<160> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<160> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<160> AreaBalance::area::hour<160> -1 DispatchableProduction::area::ThermalCluster::hour<160> FictiveLoads::area::hour<160> -1 @@ -20493,8 +20527,10 @@ COLUMNS NTCDirect::link::hour<161> R0004530 1 NTCDirect::link::hour<161> AreaBalance::area::hour<161> 1 NTCDirect::link::hour<161> AreaBalance::area::hour<161> -1 + NTCDirect::link::hour<161> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<161> AreaBalance::area::hour<161> 1 NTCDirect::link::hour<161> AreaBalance::area::hour<161> -1 + NTCDirect::link::hour<161> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<161> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<161> AreaBalance::area::hour<161> -1 DispatchableProduction::area::ThermalCluster::hour<161> FictiveLoads::area::hour<161> -1 @@ -20588,8 +20624,10 @@ COLUMNS NTCDirect::link::hour<162> R0004532 1 NTCDirect::link::hour<162> AreaBalance::area::hour<162> 1 NTCDirect::link::hour<162> AreaBalance::area::hour<162> -1 + NTCDirect::link::hour<162> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<162> AreaBalance::area::hour<162> 1 NTCDirect::link::hour<162> AreaBalance::area::hour<162> -1 + NTCDirect::link::hour<162> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<162> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<162> AreaBalance::area::hour<162> -1 DispatchableProduction::area::ThermalCluster::hour<162> FictiveLoads::area::hour<162> -1 @@ -20683,8 +20721,10 @@ COLUMNS NTCDirect::link::hour<163> R0004534 1 NTCDirect::link::hour<163> AreaBalance::area::hour<163> 1 NTCDirect::link::hour<163> AreaBalance::area::hour<163> -1 + NTCDirect::link::hour<163> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<163> AreaBalance::area::hour<163> 1 NTCDirect::link::hour<163> AreaBalance::area::hour<163> -1 + NTCDirect::link::hour<163> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<163> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<163> AreaBalance::area::hour<163> -1 DispatchableProduction::area::ThermalCluster::hour<163> FictiveLoads::area::hour<163> -1 @@ -20778,8 +20818,10 @@ COLUMNS NTCDirect::link::hour<164> R0004536 1 NTCDirect::link::hour<164> AreaBalance::area::hour<164> 1 NTCDirect::link::hour<164> AreaBalance::area::hour<164> -1 + NTCDirect::link::hour<164> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<164> AreaBalance::area::hour<164> 1 NTCDirect::link::hour<164> AreaBalance::area::hour<164> -1 + NTCDirect::link::hour<164> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<164> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<164> AreaBalance::area::hour<164> -1 DispatchableProduction::area::ThermalCluster::hour<164> FictiveLoads::area::hour<164> -1 @@ -20873,8 +20915,10 @@ COLUMNS NTCDirect::link::hour<165> R0004538 1 NTCDirect::link::hour<165> AreaBalance::area::hour<165> 1 NTCDirect::link::hour<165> AreaBalance::area::hour<165> -1 + NTCDirect::link::hour<165> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<165> AreaBalance::area::hour<165> 1 NTCDirect::link::hour<165> AreaBalance::area::hour<165> -1 + NTCDirect::link::hour<165> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<165> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<165> AreaBalance::area::hour<165> -1 DispatchableProduction::area::ThermalCluster::hour<165> FictiveLoads::area::hour<165> -1 @@ -20968,8 +21012,10 @@ COLUMNS NTCDirect::link::hour<166> R0004540 1 NTCDirect::link::hour<166> AreaBalance::area::hour<166> 1 NTCDirect::link::hour<166> AreaBalance::area::hour<166> -1 + NTCDirect::link::hour<166> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<166> AreaBalance::area::hour<166> 1 NTCDirect::link::hour<166> AreaBalance::area::hour<166> -1 + NTCDirect::link::hour<166> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<166> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<166> AreaBalance::area::hour<166> -1 DispatchableProduction::area::ThermalCluster::hour<166> FictiveLoads::area::hour<166> -1 @@ -21063,8 +21109,10 @@ COLUMNS NTCDirect::link::hour<167> R0004542 1 NTCDirect::link::hour<167> AreaBalance::area::hour<167> 1 NTCDirect::link::hour<167> AreaBalance::area::hour<167> -1 + NTCDirect::link::hour<167> Storing_balance::daily::day<6> 0.8 NTCDirect::link::hour<167> AreaBalance::area::hour<167> 1 NTCDirect::link::hour<167> AreaBalance::area::hour<167> -1 + NTCDirect::link::hour<167> Storing_balance::daily::day<6> 1 DispatchableProduction::area::ThermalCluster::hour<167> OBJROW 19.9994564001 DispatchableProduction::area::ThermalCluster::hour<167> AreaBalance::area::hour<167> -1 DispatchableProduction::area::ThermalCluster::hour<167> FictiveLoads::area::hour<167> -1 diff --git a/docker/centos7-system-deps b/docker/centos7-system-deps index cf2e7b824..511a930f6 100644 --- a/docker/centos7-system-deps +++ b/docker/centos7-system-deps @@ -1,6 +1,10 @@ FROM centos:7 # Install requirements: update repo +RUN sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo &&\ + sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo &&\ + sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo + RUN yum update -y # Install requirements : install epel @@ -8,7 +12,10 @@ RUN yum install -y epel-release RUN \ yum install -y wget git epel-release redhat-lsb-core gcc gcc-c++ make centos-release-scl scl-utils &&\ - yum install -y devtoolset-10-gcc* environment-modules rpm-build zlib-devel &&\ + sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/*.repo &&\ + sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/*.repo &&\ + sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/*.repo &&\ + yum install -y devtoolset-11-gcc* environment-modules rpm-build zlib-devel &&\ yum install -y doxygen graphviz &&\ yum install -y install python3-devel && \ yum install -y libuuid-devel diff --git a/docs/developer-guide/install_from_sources/4-Tests.md b/docs/developer-guide/install_from_sources/4-Tests.md index 218464b86..c5467abdb 100644 --- a/docs/developer-guide/install_from_sources/4-Tests.md +++ b/docs/developer-guide/install_from_sources/4-Tests.md @@ -9,27 +9,28 @@ ctest -C Release --output-on-failure All tests are associated to a label and multiple labels can be defined. You can choose which tests to execute when launching `ctest`. The list of available labels is the following: -| Name | Label | Description | -|:-----------------------------|-----|--------------------------------------------------------------------------------| -| `unit_logger` | `unit` | Unit test for logger use. | -| `unit_launcher` | `unit` | Unit test Antares-Xpansion python launcher. | -| `unit_solver` | `unit` | Unit test of multisolver interface(COIN only). | -| `unit_lpnamer` | `unit` | Unit test of lpnamer. | -| `unit_sensitivity` | `unit` | Unit test for sensitivity analysis. | -| `output_writer` | `unit` | Unit test for the output writer. | -| `helpers_test` | `unit` | Unit test for helpers (json reader, AntaresVersionProvider). | -| `lpnamer_end_to_end` | `lpnamer` `end_to_end` | End-to-end tests for lpnamer. | -| `examples_short_sequential` | `short` `short_sequential` `end_to_end` | Non-parallel end-to-end tests using benders algorithm on antares studies (short duration). | -| `examples_short_mpi` | `short` `short_mpi` `end_to_end` | Parallel end-to-end tests using benders algorithm on antares studies (short duration). | -| `examples_short_benders_by_batch_mpi` | `short` `short_mpi` `end_to_end` `benders_by_batch` | Parallel end-to-end tests using benders by batch algorithm on antares studies (short duration). | -| `examples_medium_sequential` | `medium` `medium_sequential` `end_to_end` | Non-parallel end-to-end tests using benders algorithm on antares studies (medium duration). | -| `examples_medium_mpi` | `medium` `medium_mpi` `end_to_end` | Parallel end-to-end tests using benders algorithm on antares studies (medium duration). | -| `examples_medium_benders_by_batch_mpi` | `medium` `medium_mpi` `end_to_end` `benders_by_batch` | Parallel end-to-end tests using benders by batch algorithm on antares studies (medium duration). | -| `examples_long_sequential` | `long` `long_sequential` `end_to_end` | Non-parallel end-to-end tests using benders algorithm on antares studies (long duration). | -| `examples_long_mpi` | `long` `long_mpi` `end_to_end` | Parallel end-to-end tests using benders algorithm on antares studies (long duration). | -| `mpibenders` | `benders`, `benders-mpi` `end_to_end` | End-to-end tests for benders mpi optimization. | -| `sequential` | `benders` `benders-sequential` `end_to_end` | End-to-end tests for benders sequential optimization. | -| `merge_mps` | `benders` `merge-mps` `end_to_end` | End-to-end tests for merge mps optimization. | +| Name | Label | Description | +|:---------------------------------------|-------------------------------------------------------|-------------------------------------------------------------------------------------------------------------| +| `unit_logger` | `unit` | Unit test for logger use. | +| `unit_launcher` | `unit` | Unit test Antares-Xpansion python launcher. | +| `unit_solver` | `unit` | Unit test of multisolver interface(COIN only). | +| `unit_lpnamer` | `unit` | Unit test of lpnamer. | +| `unit_sensitivity` | `unit` | Unit test for sensitivity analysis. | +| `output_writer` | `unit` | Unit test for the output writer. | +| `helpers_test` | `unit` | Unit test for helpers (json reader, AntaresVersionProvider). | +| `lpnamer_end_to_end` | `lpnamer` `end_to_end` | End-to-end tests for lpnamer. | +| `examples_short_sequential` | `short` `short_sequential` `end_to_end` | Non-parallel end-to-end tests using benders algorithm on antares studies (short duration). | +| `examples_short_memory` | `short` `short_memory` `end_to_end` | Non-parallel end-to-end tests using benders algorithm on antares studies (short duration), use antares lib. | +| `examples_short_mpi` | `short` `short_mpi` `end_to_end` | Parallel end-to-end tests using benders algorithm on antares studies (short duration). | +| `examples_short_benders_by_batch_mpi` | `short` `short_mpi` `end_to_end` `benders_by_batch` | Parallel end-to-end tests using benders by batch algorithm on antares studies (short duration). | +| `examples_medium_sequential` | `medium` `medium_sequential` `end_to_end` | Non-parallel end-to-end tests using benders algorithm on antares studies (medium duration). | +| `examples_medium_mpi` | `medium` `medium_mpi` `end_to_end` | Parallel end-to-end tests using benders algorithm on antares studies (medium duration). | +| `examples_medium_benders_by_batch_mpi` | `medium` `medium_mpi` `end_to_end` `benders_by_batch` | Parallel end-to-end tests using benders by batch algorithm on antares studies (medium duration). | +| `examples_long_sequential` | `long` `long_sequential` `end_to_end` | Non-parallel end-to-end tests using benders algorithm on antares studies (long duration). | +| `examples_long_mpi` | `long` `long_mpi` `end_to_end` | Parallel end-to-end tests using benders algorithm on antares studies (long duration). | +| `mpibenders` | `benders`, `benders-mpi` `end_to_end` | End-to-end tests for benders mpi optimization. | +| `sequential` | `benders` `benders-sequential` `end_to_end` | End-to-end tests for benders sequential optimization. | +| `merge_mps` | `benders` `merge-mps` `end_to_end` | End-to-end tests for merge mps optimization. | !!! Note Use `ctest -N` to see all available tests. diff --git a/examples/SmallTestFiveCandidates/logs/solver-20210414-162528.log b/examples/SmallTestFiveCandidates/logs/solver-20210414-162528.log deleted file mode 100644 index ff47cf70b..000000000 --- a/examples/SmallTestFiveCandidates/logs/solver-20210414-162528.log +++ /dev/null @@ -1,3121 +0,0 @@ -[Wed Apr 14 16:25:28 2021][solver][check] Antares Solver v8.0.1 (RTE France) -[Wed Apr 14 16:25:28 2021][solver][infos] :: built for 64-bit architectures, Microsoft Windows, 2 cpu(s) -[Wed Apr 14 16:25:28 2021][solver][infos] :: hostname = fv-az153-844 -[Wed Apr 14 16:25:28 2021][solver][infos] -[Wed Apr 14 16:25:28 2021][solver][infos] :: from D:\a\antares-xpansion\antares-xpansion\_build\Release -[Wed Apr 14 16:25:28 2021][solver][infos] :: log filename: D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\logs\solver-20210414-162528.log -[Wed Apr 14 16:25:28 2021][solver][infos] -[Wed Apr 14 16:25:28 2021][solver][notic] Preparing ExpansionTest1... -[Wed Apr 14 16:25:28 2021][solver][infos] detected version: 800 -[Wed Apr 14 16:25:28 2021][solver][infos] from `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01` -[Wed Apr 14 16:25:28 2021][solver][infos] -[Wed Apr 14 16:25:28 2021][solver][infos] simulation mode: Economy -[Wed Apr 14 16:25:28 2021][solver][infos] simplex optimization range: week -[Wed Apr 14 16:25:28 2021][solver][infos] :: enabling the 'year-by-year' mode -[Wed Apr 14 16:25:28 2021][solver][infos] :: enabling filtering by file -[Wed Apr 14 16:25:28 2021][solver][infos] :: ignoring day ahead reserves -[Wed Apr 14 16:25:28 2021][solver][infos] :: ignoring min stable power for thermal clusters -[Wed Apr 14 16:25:28 2021][solver][infos] :: ignoring min up/down time for thermal clusters -[Wed Apr 14 16:25:28 2021][solver][infos] Output folder : D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco -[Wed Apr 14 16:25:28 2021][solver][infos] Loading the list of areas... -[Wed Apr 14 16:25:28 2021][solver][infos] Loading the area list from `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\input\areas\list.txt` -[Wed Apr 14 16:25:28 2021][solver][infos] 8 areas found -[Wed Apr 14 16:25:28 2021][solver][infos] Loading global hydro data... -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal clusters... -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area area1 -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area area2 -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area flex -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area peak -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area pv -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area semibase -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area Store_in -[Wed Apr 14 16:25:28 2021][solver][infos] Loading thermal configuration for the area store_out -[Wed Apr 14 16:25:28 2021][solver][infos] Loading the area 1/8: area1 -[Wed Apr 14 16:25:28 2021][solver][infos] Loading the area 1/8: area1 11% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 1/8: area1 22% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 1/8: area1 33% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 1/8: area1 44% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 1/8: area1 55% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 1/8: area1 66% -[Wed Apr 14 16:25:29 2021][solver][infos] NPO max for the thermal cluster 'Base' has been normalized -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 1/8: area1 77% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 1/8: area1 88% -[Wed Apr 14 16:25:29 2021][solver][infos] NPO max for the thermal cluster 'SemiBase' has been normalized -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 11% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 22% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 33% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 44% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 55% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 66% -[Wed Apr 14 16:25:29 2021][solver][infos] NPO max for the thermal cluster 'Base' has been normalized -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 77% -[Wed Apr 14 16:25:29 2021][solver][infos] NPO max for the thermal cluster 'Peak' has been normalized -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 2/8: area2 88% -[Wed Apr 14 16:25:29 2021][solver][infos] NPO max for the thermal cluster 'SemiBase' has been normalized -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 3/8: flex -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 3/8: flex 16% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 3/8: flex 33% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 3/8: flex 50% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 3/8: flex 66% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 3/8: flex 83% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 4/8: peak -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 4/8: peak 14% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 4/8: peak 28% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 4/8: peak 42% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 4/8: peak 57% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 4/8: peak 71% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 4/8: peak 85% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 5/8: pv -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 5/8: pv 16% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 5/8: pv 33% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 5/8: pv 50% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 5/8: pv 66% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 5/8: pv 83% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 6/8: semibase -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 6/8: semibase 14% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 6/8: semibase 28% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 6/8: semibase 42% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 6/8: semibase 57% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 6/8: semibase 71% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 6/8: semibase 85% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 7/8: Store_in -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 7/8: Store_in 16% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 7/8: Store_in 33% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 7/8: Store_in 50% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 7/8: Store_in 66% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 7/8: Store_in 83% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 8/8: store_out -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 8/8: store_out 16% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 8/8: store_out 33% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 8/8: store_out 50% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 8/8: store_out 66% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading the area 8/8: store_out 83% -[Wed Apr 14 16:25:29 2021][solver][infos] Loading correlation matrices... -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Loading constraints... -[Wed Apr 14 16:25:29 2021][solver][infos] added `Storing_balance` (daily, equality) -[Wed Apr 14 16:25:29 2021][solver][infos] 1 binding constraint found -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Loading sets of areas... -[Wed Apr 14 16:25:29 2021][solver][infos] found `all areas` (8 items, no output) -[Wed Apr 14 16:25:29 2021][solver][infos] Elapsed time: Study loading: 261ms -[Wed Apr 14 16:25:29 2021][solver][infos] [statistics] disk: read: 2755 ko, written: 0 ko -[Wed Apr 14 16:25:29 2021][solver][infos] [statistics] network: read: 0 ko, written: 0 ko -[Wed Apr 14 16:25:29 2021][solver][infos] The study is loaded. -[Wed Apr 14 16:25:29 2021][solver][infos] [UI] Display messages: Off -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Generating calendar informations -[Wed Apr 14 16:25:29 2021][solver][infos] Calendar: hours:1..8736, days:1..364, weeks:1..52, months:1..12, years:1..3 -[Wed Apr 14 16:25:29 2021][solver][infos] Simulation days per month : 31, 31, 30, 31, 30, 31, 31, 28, 31, 30, 31, 29 -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Removing disabled thermal clusters in from solver computations... -[Wed Apr 14 16:25:29 2021][solver][infos] No disabled thermal cluster removed before solver computations -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Optimizing the thermal clusters in 'must-run' mode... -[Wed Apr 14 16:25:29 2021][solver][infos] No thermal cluster in 'must-run' mode -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Optimizing 1 binding constraint -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Summary -[Wed Apr 14 16:25:29 2021][solver][infos] areas: 8 -[Wed Apr 14 16:25:29 2021][solver][infos] links: 7 -[Wed Apr 14 16:25:29 2021][solver][infos] thermal clusters: 8 -[Wed Apr 14 16:25:29 2021][solver][infos] thermal clusters (must-run): 0 -[Wed Apr 14 16:25:29 2021][solver][infos] binding constraints: 1 -[Wed Apr 14 16:25:29 2021][solver][infos] geographic trimming:true -[Wed Apr 14 16:25:29 2021][solver][infos] memory : 16Mo -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Initializing random number generators... -[Wed Apr 14 16:25:29 2021][solver][infos] The progression is disabled -[Wed Apr 14 16:25:29 2021][solver][infos] system memory report: 5033 Mib / 7167 Mib, 70.224641% free -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] [UI] Display messages: On -[Wed Apr 14 16:25:29 2021][solver][check] Running the simulation (economy) -[Wed Apr 14 16:25:29 2021][solver][infos] Allocating resources... -[Wed Apr 14 16:25:29 2021][solver][infos] Allocating resources 62% -[Wed Apr 14 16:25:29 2021][solver][infos] Allocating resources... -[Wed Apr 14 16:25:29 2021][solver][infos] Variables: (110Mo) -[Wed Apr 14 16:25:29 2021][solver][infos] + Areas -[Wed Apr 14 16:25:29 2021][solver][infos] OV. COST Euro Overall Cost throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] OP. COST Euro Operating Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] MRG. PRICE Euro Marginal Price, throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] CO2 EMIS. Tons Overall CO2 emissions expected from all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] DTG by plant MWh Energy generated by all the clusters -[Wed Apr 14 16:25:29 2021][solver][infos] BALANCE MWh Nodal energy balance, throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] ROW BAL. MWh Row Balance -[Wed Apr 14 16:25:29 2021][solver][infos] PSP MWh PSP -[Wed Apr 14 16:25:29 2021][solver][infos] MISC. NDG MWh Non-dispatchable generation (not including wind and run-of-the-river) -[Wed Apr 14 16:25:29 2021][solver][infos] LOAD MWh Load generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] H. ROR MWh Hydro generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] WIND MWh Wind generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] SOLAR MWh Solar generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] Dispatch. Gen. MWh Value of all the dispatchable generation throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] H. STOR MWh Hydro Storage Generation -[Wed Apr 14 16:25:29 2021][solver][infos] H. PUMP MWh Hydraulic pumping -[Wed Apr 14 16:25:29 2021][solver][infos] H. LEV % Hydro Level -[Wed Apr 14 16:25:29 2021][solver][infos] H. INFL MWh Hydraulic inflows -[Wed Apr 14 16:25:29 2021][solver][infos] H. OVFL % Hydro overflow -[Wed Apr 14 16:25:29 2021][solver][infos] H. VAL Euro/MWhWater value -[Wed Apr 14 16:25:29 2021][solver][infos] H. COST Euro Hydro Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] UNSP. ENRG MWh Unsuplied Energy (demand that cannot be satisfied) -[Wed Apr 14 16:25:29 2021][solver][infos] SPIL. ENRG MWh Spilled Energy (generation that cannot be satisfied) -[Wed Apr 14 16:25:29 2021][solver][infos] LOLD Hours LOLD -[Wed Apr 14 16:25:29 2021][solver][infos] LOLP % LOLP -[Wed Apr 14 16:25:29 2021][solver][infos] AVL DTG MWh Available dispatchable generation -[Wed Apr 14 16:25:29 2021][solver][infos] DTG MRG MWh Dispatchable Generation Margin -[Wed Apr 14 16:25:29 2021][solver][infos] MAX MRG MWh Maximum margin throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] NP COST Euro Non Proportional Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] NP Cost by plant NP Cost Non proportional costs by all the clusters -[Wed Apr 14 16:25:29 2021][solver][infos] NODU Number Of Dispatched Units throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] NODU by plant NODU Number of Dispatchable Units by plant -[Wed Apr 14 16:25:29 2021][solver][infos] + Links -[Wed Apr 14 16:25:29 2021][solver][infos] FLOW LIN. MWh Flow assessed, over all MC years, through linear optimization -[Wed Apr 14 16:25:29 2021][solver][infos] UCAP LIN. MWh Used capacity assessed, over all MC years, through linear optimization -[Wed Apr 14 16:25:29 2021][solver][infos] LOOP FLOW MWh Loop flow -[Wed Apr 14 16:25:29 2021][solver][infos] FLOW QUAD. MWh Flow (quad.) -[Wed Apr 14 16:25:29 2021][solver][infos] CONG. FEE (ALG.) Euro Congestion fee collected throughout all MC years (Alg.) -[Wed Apr 14 16:25:29 2021][solver][infos] CONG. FEE (ABS.) Euro Congestion fee collected throughout all MC years (Absolute value) -[Wed Apr 14 16:25:29 2021][solver][infos] MARG. COST Euro/MW Decrease of the overall operating cost expected by a 1MW capacity reinforcement -[Wed Apr 14 16:25:29 2021][solver][infos] CONG. PROB. (+/-) % Probability for the line to be congested in the upstream-downstream way -[Wed Apr 14 16:25:29 2021][solver][infos] HURDLE COST Euro Hurdle costs, over all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] + Sets of Areas -[Wed Apr 14 16:25:29 2021][solver][infos] OV. COST Euro Overall Cost throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] OP. COST Euro Operating Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] MRG. PRICE Euro Marginal Price, throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] CO2 EMIS. Tons Overall CO2 emissions expected from all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] BALANCE MWh Nodal energy balance, throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] ROW BAL. MWh Row Balance -[Wed Apr 14 16:25:29 2021][solver][infos] PSP MWh PSP -[Wed Apr 14 16:25:29 2021][solver][infos] MISC. NDG MWh Non-dispatchable generation (not including wind and run-of-the-river) -[Wed Apr 14 16:25:29 2021][solver][infos] LOAD MWh Load generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] H. ROR MWh Hydro generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] WIND MWh Wind generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] SOLAR MWh Solar generation, thoughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] Dispatch. Gen. MWh Value of all the dispatchable generation throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] H. STOR MWh Hydro Storage Generation -[Wed Apr 14 16:25:29 2021][solver][infos] H. PUMP MWh Hydraulic pumping -[Wed Apr 14 16:25:29 2021][solver][infos] H. LEV % Hydro Level -[Wed Apr 14 16:25:29 2021][solver][infos] H. INFL MWh Hydraulic inflows -[Wed Apr 14 16:25:29 2021][solver][infos] H. OVFL % Hydro overflow -[Wed Apr 14 16:25:29 2021][solver][infos] H. VAL Euro/MWhWater value -[Wed Apr 14 16:25:29 2021][solver][infos] H. COST Euro Hydro Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] UNSP. ENRG MWh Unsuplied Energy (demand that cannot be satisfied) -[Wed Apr 14 16:25:29 2021][solver][infos] SPIL. ENRG MWh Spilled Energy (generation that cannot be satisfied) -[Wed Apr 14 16:25:29 2021][solver][infos] LOLD Hours LOLD -[Wed Apr 14 16:25:29 2021][solver][infos] LOLP % LOLP -[Wed Apr 14 16:25:29 2021][solver][infos] AVL DTG MWh Available dispatchable generation -[Wed Apr 14 16:25:29 2021][solver][infos] DTG MRG MWh Dispatchable Generation Margin -[Wed Apr 14 16:25:29 2021][solver][infos] MAX MRG MWh Maximum margin throughout all MC years -[Wed Apr 14 16:25:29 2021][solver][infos] NP COST Euro Non Proportional Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] NODU Number Of Dispatched Units throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Preparing time-series numbers... -[Wed Apr 14 16:25:29 2021][solver][infos] MC-Years : [1 .. 3], total: 3 -[Wed Apr 14 16:25:29 2021][solver][infos] Starting the simulation -[Wed Apr 14 16:25:29 2021][solver][infos] parallel batch size : 1 -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Generating the thermal time-series -[Wed Apr 14 16:25:29 2021][solver][infos] Year 1 -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Starting Memory Allocation for a Weekly Optimization problem in Canonical form -[Wed Apr 14 16:25:29 2021][solver][infos] ( Problem Size :7560 Variables 3871 Constraints) -[Wed Apr 14 16:25:29 2021][solver][infos] Expected Number of Non-zero terms in Problem Matrix : 76199 -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Status of Preliminary Allocations for Generic Problem Resolution : Successful -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\interco-1-1-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\area-1-1-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-1-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-1-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-1-20210414-162529.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-1-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-1-20210414-162529-1.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-1-20210414-162529-1.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-2-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-2-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-2-20210414-162529.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-2-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-2-20210414-162529-1.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-2-20210414-162529-1.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-3-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-3-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-3-20210414-162529.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-3-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-3-20210414-162529-1.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-3-20210414-162529-1.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-4-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-4-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-4-20210414-162529.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-4-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-4-20210414-162529-1.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-4-20210414-162529-1.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-5-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-5-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-5-20210414-162529.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-5-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-5-20210414-162529-1.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-5-20210414-162529-1.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-6-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-6-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-6-20210414-162529.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-6-20210414-162529.txt' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:29 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-6-20210414-162529-1.mps' -[Wed Apr 14 16:25:29 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-6-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-7-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-7-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-7-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-7-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-7-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-7-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-8-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-8-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-8-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-8-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-8-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-8-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-9-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-9-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-9-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-9-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-9-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-9-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-10-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-10-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-10-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-10-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-10-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-10-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-11-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-11-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-11-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-11-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-11-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-11-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-12-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-12-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-12-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-12-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-12-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-12-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-13-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-13-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-13-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-13-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-13-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-13-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-14-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-14-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-14-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-14-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-14-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-14-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-15-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-15-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-15-20210414-162530.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-15-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-15-20210414-162530-1.mps' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-15-20210414-162530-1.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-16-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:30 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-16-20210414-162530.txt' -[Wed Apr 14 16:25:30 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-16-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-16-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-16-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-16-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-17-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-17-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-17-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-17-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-17-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-17-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-18-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-18-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-18-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-18-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-18-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-18-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-19-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-19-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-19-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-19-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-19-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-19-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-20-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-20-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-20-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-20-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-20-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-20-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-21-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-21-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-21-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-21-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-21-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-21-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-22-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-22-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-22-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-22-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-22-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-22-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-23-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-23-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-23-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-23-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-23-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-23-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-24-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-24-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-24-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-24-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-24-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-24-20210414-162531-1.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-25-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-25-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-25-20210414-162531.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-25-20210414-162531.txt' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:31 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-25-20210414-162531-1.mps' -[Wed Apr 14 16:25:31 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-25-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-26-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-26-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-26-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-26-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-26-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-26-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-27-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-27-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-27-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-27-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-27-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-27-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-28-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-28-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-28-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-28-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-28-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-28-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-29-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-29-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-29-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-29-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-29-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-29-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-30-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-30-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-30-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-30-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-30-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-30-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-31-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-31-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-31-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-31-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-31-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-31-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-32-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-32-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-32-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-32-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-32-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-32-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-33-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-33-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-33-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-33-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-33-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-33-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-34-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-34-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-34-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-34-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-34-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-34-20210414-162532-1.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-35-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-35-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-35-20210414-162532.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-35-20210414-162532.txt' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:32 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-35-20210414-162532-1.mps' -[Wed Apr 14 16:25:32 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-35-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-36-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-36-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-36-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-36-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-36-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-36-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-37-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-37-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-37-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-37-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-37-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-37-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-38-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-38-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-38-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-38-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-38-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-38-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-39-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-39-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-39-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-39-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-39-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-39-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-40-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-40-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-40-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-40-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-40-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-40-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-41-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-41-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-41-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-41-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-41-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-41-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-42-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-42-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-42-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-42-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-42-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-42-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-43-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-43-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-43-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-43-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-43-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-43-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-44-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-44-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-44-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-44-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-44-20210414-162533-1.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-44-20210414-162533-1.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-45-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-45-20210414-162533.txt' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:33 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-45-20210414-162533.mps' -[Wed Apr 14 16:25:33 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-45-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-45-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-45-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-46-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-46-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-46-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-46-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-46-20210414-162534-1.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-46-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-47-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-47-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-47-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-47-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-47-20210414-162534-1.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-47-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-48-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-48-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-48-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-48-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-48-20210414-162534-1.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-48-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-49-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-49-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-49-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-49-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-49-20210414-162534-1.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-49-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-50-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-50-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-50-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-50-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-50-20210414-162534-1.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-50-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-51-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-51-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-51-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-51-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-51-20210414-162534-1.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-51-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-1-52-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-1-52-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-52-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-52-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-1-52-20210414-162534-1.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-1-52-20210414-162534-1.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting the annual results -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:25:34 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:25:34 2021][solver][infos] Elapsed time: Survey report: 59ms -[Wed Apr 14 16:25:34 2021][solver][infos] parallel batch size : 1 -[Wed Apr 14 16:25:34 2021][solver][infos] Year 2 -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-1-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-1-20210414-162534.txt' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:34 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-1-20210414-162534.mps' -[Wed Apr 14 16:25:34 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-1-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-1-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-1-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-2-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-2-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-2-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-2-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-2-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-2-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-3-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-3-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-3-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-3-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-3-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-3-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-4-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-4-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-4-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-4-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-4-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-4-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-5-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-5-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-5-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-5-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-5-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-5-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-6-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-6-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-6-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-6-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-6-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-6-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-7-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-7-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-7-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-7-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-7-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-7-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-8-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-8-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-8-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-8-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-8-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-8-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-9-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-9-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-9-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-9-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-9-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-9-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-10-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-10-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-10-20210414-162535.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-10-20210414-162535.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-10-20210414-162535-1.mps' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:35 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-10-20210414-162535-1.txt' -[Wed Apr 14 16:25:35 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-11-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-11-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-11-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-11-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-11-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-11-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-12-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-12-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-12-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-12-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-12-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-12-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-13-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-13-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-13-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-13-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-13-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-13-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-14-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-14-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-14-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-14-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-14-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-14-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-15-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-15-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-15-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-15-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-15-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-15-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-16-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-16-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-16-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-16-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-16-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-16-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-17-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-17-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-17-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-17-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-17-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-17-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-18-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-18-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-18-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-18-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-18-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-18-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-19-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-19-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-19-20210414-162536.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-19-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-19-20210414-162536-1.mps' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-19-20210414-162536-1.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-20-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:36 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-20-20210414-162536.txt' -[Wed Apr 14 16:25:36 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-20-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-20-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-20-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-20-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-21-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-21-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-21-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-21-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-21-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-21-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-22-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-22-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-22-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-22-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-22-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-22-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-23-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-23-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-23-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-23-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-23-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-23-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-24-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-24-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-24-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-24-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-24-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-24-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-25-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-25-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-25-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-25-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-25-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-25-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-26-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-26-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-26-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-26-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-26-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-26-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-27-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-27-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-27-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-27-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-27-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-27-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-28-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-28-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-28-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-28-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-28-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-28-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-29-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-29-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-29-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-29-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-29-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-29-20210414-162537-1.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-30-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-30-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-30-20210414-162537.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-30-20210414-162537.txt' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:37 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-30-20210414-162537-1.mps' -[Wed Apr 14 16:25:37 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-30-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-31-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-31-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-31-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-31-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-31-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-31-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-32-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-32-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-32-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-32-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-32-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-32-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-33-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-33-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-33-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-33-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-33-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-33-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-34-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-34-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-34-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-34-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-34-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-34-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-35-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-35-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-35-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-35-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-35-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-35-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-36-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-36-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-36-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-36-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-36-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-36-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-37-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-37-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-37-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-37-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-37-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-37-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-38-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-38-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-38-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-38-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-38-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-38-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-39-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-39-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-39-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-39-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-39-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-39-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-40-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-40-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-40-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-40-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-40-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-40-20210414-162538-1.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-41-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-41-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-41-20210414-162538.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-41-20210414-162538.txt' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:38 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-41-20210414-162538-1.mps' -[Wed Apr 14 16:25:38 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-41-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-42-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-42-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-42-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-42-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-42-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-42-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-43-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-43-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-43-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-43-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-43-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-43-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-44-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-44-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-44-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-44-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-44-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-44-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-45-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-45-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-45-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-45-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-45-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-45-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-46-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-46-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-46-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-46-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-46-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-46-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-47-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-47-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-47-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-47-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-47-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-47-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-48-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-48-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-48-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-48-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-48-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-48-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-49-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-49-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-49-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-49-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-49-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-49-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-50-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-50-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-50-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-50-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-50-20210414-162539-1.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-50-20210414-162539-1.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-51-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-51-20210414-162539.txt' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:39 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-51-20210414-162539.mps' -[Wed Apr 14 16:25:39 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-51-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-51-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-51-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-2-52-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-2-52-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-52-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-52-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-2-52-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-2-52-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting the annual results -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:25:40 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:25:40 2021][solver][infos] Elapsed time: Survey report: 82ms -[Wed Apr 14 16:25:40 2021][solver][infos] parallel batch size : 1 -[Wed Apr 14 16:25:40 2021][solver][infos] Year 3 -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-1-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-1-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-1-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-1-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-1-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-1-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-2-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-2-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-2-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-2-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-2-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-2-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-3-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-3-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-3-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-3-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-3-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-3-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-4-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-4-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-4-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-4-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-4-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-4-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-5-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-5-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-5-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-5-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-5-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-5-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-6-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-6-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-6-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-6-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-6-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-6-20210414-162540-1.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-7-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-7-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-7-20210414-162540.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-7-20210414-162540.txt' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:40 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-7-20210414-162540-1.mps' -[Wed Apr 14 16:25:40 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-7-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-8-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-8-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-8-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-8-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-8-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-8-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-9-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-9-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-9-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-9-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-9-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-9-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-10-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-10-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-10-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-10-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-10-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-10-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-11-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-11-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-11-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-11-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-11-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-11-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-12-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-12-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-12-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-12-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-12-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-12-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-13-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-13-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-13-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-13-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-13-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-13-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-14-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-14-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-14-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-14-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-14-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-14-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-15-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-15-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-15-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-15-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-15-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-15-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-16-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-16-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-16-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-16-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-16-20210414-162541-1.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-16-20210414-162541-1.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-17-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-17-20210414-162541.txt' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:41 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-17-20210414-162541.mps' -[Wed Apr 14 16:25:41 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-17-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-17-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-17-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-18-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-18-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-18-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-18-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-18-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-18-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-19-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-19-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-19-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-19-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-19-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-19-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-20-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-20-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-20-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-20-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-20-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-20-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-21-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-21-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-21-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-21-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-21-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-21-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-22-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-22-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-22-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-22-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-22-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-22-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-23-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-23-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-23-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-23-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-23-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-23-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-24-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-24-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-24-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-24-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-24-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-24-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-25-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-25-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-25-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-25-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-25-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-25-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-26-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-26-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-26-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-26-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-26-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-26-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-27-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-27-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-27-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-27-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-27-20210414-162542-1.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-27-20210414-162542-1.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-28-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-28-20210414-162542.txt' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:42 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-28-20210414-162542.mps' -[Wed Apr 14 16:25:42 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-28-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-28-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-28-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-29-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-29-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-29-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-29-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-29-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-29-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-30-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-30-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-30-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-30-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-30-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-30-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-31-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-31-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-31-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-31-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-31-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-31-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-32-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-32-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-32-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-32-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-32-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-32-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-33-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-33-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-33-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-33-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-33-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-33-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-34-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-34-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-34-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-34-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-34-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-34-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-35-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-35-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-35-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-35-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-35-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-35-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-36-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-36-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-36-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-36-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-36-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-36-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-37-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-37-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-37-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-37-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-37-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-37-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-38-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-38-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-38-20210414-162543.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-38-20210414-162543.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-38-20210414-162543-1.mps' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:43 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-38-20210414-162543-1.txt' -[Wed Apr 14 16:25:43 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-39-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-39-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-39-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-39-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-39-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-39-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-40-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-40-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-40-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-40-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-40-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-40-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-41-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-41-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-41-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-41-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-41-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-41-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-42-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-42-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-42-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-42-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-42-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-42-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-43-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-43-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-43-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-43-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-43-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-43-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-44-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-44-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-44-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-44-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-44-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-44-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-45-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-45-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-45-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-45-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-45-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-45-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-46-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-46-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-46-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-46-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-46-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-46-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-47-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-47-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-47-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-47-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-47-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-47-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-48-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-48-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-48-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-48-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-48-20210414-162544-1.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-48-20210414-162544-1.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-49-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-49-20210414-162544.txt' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:44 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-49-20210414-162544.mps' -[Wed Apr 14 16:25:44 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-49-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-49-20210414-162545.mps' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-49-20210414-162545-1.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-50-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-50-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-50-20210414-162545.mps' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-50-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-50-20210414-162545-1.mps' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-50-20210414-162545-1.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-51-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-51-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-51-20210414-162545.mps' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-51-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-51-20210414-162545-1.mps' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-51-20210414-162545-1.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\variables-3-52-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\constraints-3-52-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-52-20210414-162545.mps' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-52-20210414-162545.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\problem-3-52-20210414-162545-1.mps' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\criterion-3-52-20210414-162545-1.txt' -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting the annual results -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:25:45 2021][solver][infos] Elapsed time: Survey report: 61ms -[Wed Apr 14 16:25:45 2021][solver][infos] The quadratic optimisation has been skipped -[Wed Apr 14 16:25:45 2021][solver][infos] Elapsed time: MC Years: 16171ms -[Wed Apr 14 16:25:45 2021][solver][infos] -[Wed Apr 14 16:25:45 2021][solver][check] Exporting the survey results... -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:25:45 2021][solver][infos] Exporting digest... -[Wed Apr 14 16:25:45 2021][solver][infos] Elapsed time: Survey report: 283ms -[Wed Apr 14 16:25:45 2021][solver][infos] [UI] Quitting the solver gracefully -[Wed Apr 14 16:25:45 2021][solver][infos] Writing log file: D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1625eco\simulation.log -[Wed Apr 14 16:25:45 2021][solver][infos] Done. diff --git a/examples/SmallTestFiveCandidates/logs/solver-20210414-162650.log b/examples/SmallTestFiveCandidates/logs/solver-20210414-162650.log deleted file mode 100644 index 021ad1ce3..000000000 --- a/examples/SmallTestFiveCandidates/logs/solver-20210414-162650.log +++ /dev/null @@ -1,3121 +0,0 @@ -[Wed Apr 14 16:26:50 2021][solver][check] Antares Solver v8.0.1 (RTE France) -[Wed Apr 14 16:26:50 2021][solver][infos] :: built for 64-bit architectures, Microsoft Windows, 2 cpu(s) -[Wed Apr 14 16:26:50 2021][solver][infos] :: hostname = fv-az153-844 -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] :: from D:\a\antares-xpansion\antares-xpansion\_build\Release -[Wed Apr 14 16:26:50 2021][solver][infos] :: log filename: D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\logs\solver-20210414-162650.log -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][notic] Preparing ExpansionTest1... -[Wed Apr 14 16:26:50 2021][solver][infos] detected version: 800 -[Wed Apr 14 16:26:50 2021][solver][infos] from `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01` -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] simulation mode: Economy -[Wed Apr 14 16:26:50 2021][solver][infos] simplex optimization range: week -[Wed Apr 14 16:26:50 2021][solver][infos] :: enabling the 'year-by-year' mode -[Wed Apr 14 16:26:50 2021][solver][infos] :: enabling filtering by file -[Wed Apr 14 16:26:50 2021][solver][infos] :: ignoring day ahead reserves -[Wed Apr 14 16:26:50 2021][solver][infos] :: ignoring min stable power for thermal clusters -[Wed Apr 14 16:26:50 2021][solver][infos] :: ignoring min up/down time for thermal clusters -[Wed Apr 14 16:26:50 2021][solver][infos] Output folder : D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the list of areas... -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area list from `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\input\areas\list.txt` -[Wed Apr 14 16:26:50 2021][solver][infos] 8 areas found -[Wed Apr 14 16:26:50 2021][solver][infos] Loading global hydro data... -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal clusters... -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area area1 -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area area2 -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area flex -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area peak -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area pv -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area semibase -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area Store_in -[Wed Apr 14 16:26:50 2021][solver][infos] Loading thermal configuration for the area store_out -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 11% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 22% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 33% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 44% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 55% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 66% -[Wed Apr 14 16:26:50 2021][solver][infos] NPO max for the thermal cluster 'Base' has been normalized -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 77% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 1/8: area1 88% -[Wed Apr 14 16:26:50 2021][solver][infos] NPO max for the thermal cluster 'SemiBase' has been normalized -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 11% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 22% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 33% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 44% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 55% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 66% -[Wed Apr 14 16:26:50 2021][solver][infos] NPO max for the thermal cluster 'Base' has been normalized -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 77% -[Wed Apr 14 16:26:50 2021][solver][infos] NPO max for the thermal cluster 'Peak' has been normalized -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 2/8: area2 88% -[Wed Apr 14 16:26:50 2021][solver][infos] NPO max for the thermal cluster 'SemiBase' has been normalized -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 3/8: flex -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 3/8: flex 16% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 3/8: flex 33% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 3/8: flex 50% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 3/8: flex 66% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 3/8: flex 83% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 4/8: peak -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 4/8: peak 14% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 4/8: peak 28% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 4/8: peak 42% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 4/8: peak 57% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 4/8: peak 71% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 4/8: peak 85% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 5/8: pv -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 5/8: pv 16% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 5/8: pv 33% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 5/8: pv 50% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 5/8: pv 66% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 5/8: pv 83% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 6/8: semibase -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 6/8: semibase 14% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 6/8: semibase 28% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 6/8: semibase 42% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 6/8: semibase 57% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 6/8: semibase 71% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 6/8: semibase 85% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 7/8: Store_in -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 7/8: Store_in 16% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 7/8: Store_in 33% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 7/8: Store_in 50% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 7/8: Store_in 66% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 7/8: Store_in 83% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 8/8: store_out -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 8/8: store_out 16% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 8/8: store_out 33% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 8/8: store_out 50% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 8/8: store_out 66% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading the area 8/8: store_out 83% -[Wed Apr 14 16:26:50 2021][solver][infos] Loading correlation matrices... -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Loading constraints... -[Wed Apr 14 16:26:50 2021][solver][infos] added `Storing_balance` (daily, equality) -[Wed Apr 14 16:26:50 2021][solver][infos] 1 binding constraint found -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Loading sets of areas... -[Wed Apr 14 16:26:50 2021][solver][infos] found `all areas` (8 items, no output) -[Wed Apr 14 16:26:50 2021][solver][infos] Elapsed time: Study loading: 425ms -[Wed Apr 14 16:26:50 2021][solver][infos] [statistics] disk: read: 5084 ko, written: 0 ko -[Wed Apr 14 16:26:50 2021][solver][infos] [statistics] network: read: 0 ko, written: 0 ko -[Wed Apr 14 16:26:50 2021][solver][infos] The study is loaded. -[Wed Apr 14 16:26:50 2021][solver][infos] [UI] Display messages: Off -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Generating calendar informations -[Wed Apr 14 16:26:50 2021][solver][infos] Calendar: hours:1..8736, days:1..364, weeks:1..52, months:1..12, years:1..3 -[Wed Apr 14 16:26:50 2021][solver][infos] Simulation days per month : 31, 31, 30, 31, 30, 31, 31, 28, 31, 30, 31, 29 -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Removing disabled thermal clusters in from solver computations... -[Wed Apr 14 16:26:50 2021][solver][infos] No disabled thermal cluster removed before solver computations -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Optimizing the thermal clusters in 'must-run' mode... -[Wed Apr 14 16:26:50 2021][solver][infos] No thermal cluster in 'must-run' mode -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Optimizing 1 binding constraint -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Summary -[Wed Apr 14 16:26:50 2021][solver][infos] areas: 8 -[Wed Apr 14 16:26:50 2021][solver][infos] links: 7 -[Wed Apr 14 16:26:50 2021][solver][infos] thermal clusters: 8 -[Wed Apr 14 16:26:50 2021][solver][infos] thermal clusters (must-run): 0 -[Wed Apr 14 16:26:50 2021][solver][infos] binding constraints: 1 -[Wed Apr 14 16:26:50 2021][solver][infos] geographic trimming:true -[Wed Apr 14 16:26:50 2021][solver][infos] memory : 16Mo -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Initializing random number generators... -[Wed Apr 14 16:26:50 2021][solver][infos] The progression is disabled -[Wed Apr 14 16:26:50 2021][solver][infos] system memory report: 5134 Mib / 7167 Mib, 71.633877% free -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] [UI] Display messages: On -[Wed Apr 14 16:26:50 2021][solver][check] Running the simulation (economy) -[Wed Apr 14 16:26:50 2021][solver][infos] Allocating resources... -[Wed Apr 14 16:26:50 2021][solver][infos] Allocating resources 62% -[Wed Apr 14 16:26:50 2021][solver][infos] Allocating resources... -[Wed Apr 14 16:26:50 2021][solver][infos] Variables: (110Mo) -[Wed Apr 14 16:26:50 2021][solver][infos] + Areas -[Wed Apr 14 16:26:50 2021][solver][infos] OV. COST Euro Overall Cost throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] OP. COST Euro Operating Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] MRG. PRICE Euro Marginal Price, throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] CO2 EMIS. Tons Overall CO2 emissions expected from all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] DTG by plant MWh Energy generated by all the clusters -[Wed Apr 14 16:26:50 2021][solver][infos] BALANCE MWh Nodal energy balance, throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] ROW BAL. MWh Row Balance -[Wed Apr 14 16:26:50 2021][solver][infos] PSP MWh PSP -[Wed Apr 14 16:26:50 2021][solver][infos] MISC. NDG MWh Non-dispatchable generation (not including wind and run-of-the-river) -[Wed Apr 14 16:26:50 2021][solver][infos] LOAD MWh Load generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] H. ROR MWh Hydro generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] WIND MWh Wind generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] SOLAR MWh Solar generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] Dispatch. Gen. MWh Value of all the dispatchable generation throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] H. STOR MWh Hydro Storage Generation -[Wed Apr 14 16:26:50 2021][solver][infos] H. PUMP MWh Hydraulic pumping -[Wed Apr 14 16:26:50 2021][solver][infos] H. LEV % Hydro Level -[Wed Apr 14 16:26:50 2021][solver][infos] H. INFL MWh Hydraulic inflows -[Wed Apr 14 16:26:50 2021][solver][infos] H. OVFL % Hydro overflow -[Wed Apr 14 16:26:50 2021][solver][infos] H. VAL Euro/MWhWater value -[Wed Apr 14 16:26:50 2021][solver][infos] H. COST Euro Hydro Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] UNSP. ENRG MWh Unsuplied Energy (demand that cannot be satisfied) -[Wed Apr 14 16:26:50 2021][solver][infos] SPIL. ENRG MWh Spilled Energy (generation that cannot be satisfied) -[Wed Apr 14 16:26:50 2021][solver][infos] LOLD Hours LOLD -[Wed Apr 14 16:26:50 2021][solver][infos] LOLP % LOLP -[Wed Apr 14 16:26:50 2021][solver][infos] AVL DTG MWh Available dispatchable generation -[Wed Apr 14 16:26:50 2021][solver][infos] DTG MRG MWh Dispatchable Generation Margin -[Wed Apr 14 16:26:50 2021][solver][infos] MAX MRG MWh Maximum margin throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] NP COST Euro Non Proportional Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] NP Cost by plant NP Cost Non proportional costs by all the clusters -[Wed Apr 14 16:26:50 2021][solver][infos] NODU Number Of Dispatched Units throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] NODU by plant NODU Number of Dispatchable Units by plant -[Wed Apr 14 16:26:50 2021][solver][infos] + Links -[Wed Apr 14 16:26:50 2021][solver][infos] FLOW LIN. MWh Flow assessed, over all MC years, through linear optimization -[Wed Apr 14 16:26:50 2021][solver][infos] UCAP LIN. MWh Used capacity assessed, over all MC years, through linear optimization -[Wed Apr 14 16:26:50 2021][solver][infos] LOOP FLOW MWh Loop flow -[Wed Apr 14 16:26:50 2021][solver][infos] FLOW QUAD. MWh Flow (quad.) -[Wed Apr 14 16:26:50 2021][solver][infos] CONG. FEE (ALG.) Euro Congestion fee collected throughout all MC years (Alg.) -[Wed Apr 14 16:26:50 2021][solver][infos] CONG. FEE (ABS.) Euro Congestion fee collected throughout all MC years (Absolute value) -[Wed Apr 14 16:26:50 2021][solver][infos] MARG. COST Euro/MW Decrease of the overall operating cost expected by a 1MW capacity reinforcement -[Wed Apr 14 16:26:50 2021][solver][infos] CONG. PROB. (+/-) % Probability for the line to be congested in the upstream-downstream way -[Wed Apr 14 16:26:50 2021][solver][infos] HURDLE COST Euro Hurdle costs, over all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] + Sets of Areas -[Wed Apr 14 16:26:50 2021][solver][infos] OV. COST Euro Overall Cost throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] OP. COST Euro Operating Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] MRG. PRICE Euro Marginal Price, throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] CO2 EMIS. Tons Overall CO2 emissions expected from all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] BALANCE MWh Nodal energy balance, throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] ROW BAL. MWh Row Balance -[Wed Apr 14 16:26:50 2021][solver][infos] PSP MWh PSP -[Wed Apr 14 16:26:50 2021][solver][infos] MISC. NDG MWh Non-dispatchable generation (not including wind and run-of-the-river) -[Wed Apr 14 16:26:50 2021][solver][infos] LOAD MWh Load generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] H. ROR MWh Hydro generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] WIND MWh Wind generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] SOLAR MWh Solar generation, thoughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] Dispatch. Gen. MWh Value of all the dispatchable generation throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] H. STOR MWh Hydro Storage Generation -[Wed Apr 14 16:26:50 2021][solver][infos] H. PUMP MWh Hydraulic pumping -[Wed Apr 14 16:26:50 2021][solver][infos] H. LEV % Hydro Level -[Wed Apr 14 16:26:50 2021][solver][infos] H. INFL MWh Hydraulic inflows -[Wed Apr 14 16:26:50 2021][solver][infos] H. OVFL % Hydro overflow -[Wed Apr 14 16:26:50 2021][solver][infos] H. VAL Euro/MWhWater value -[Wed Apr 14 16:26:50 2021][solver][infos] H. COST Euro Hydro Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] UNSP. ENRG MWh Unsuplied Energy (demand that cannot be satisfied) -[Wed Apr 14 16:26:50 2021][solver][infos] SPIL. ENRG MWh Spilled Energy (generation that cannot be satisfied) -[Wed Apr 14 16:26:50 2021][solver][infos] LOLD Hours LOLD -[Wed Apr 14 16:26:50 2021][solver][infos] LOLP % LOLP -[Wed Apr 14 16:26:50 2021][solver][infos] AVL DTG MWh Available dispatchable generation -[Wed Apr 14 16:26:50 2021][solver][infos] DTG MRG MWh Dispatchable Generation Margin -[Wed Apr 14 16:26:50 2021][solver][infos] MAX MRG MWh Maximum margin throughout all MC years -[Wed Apr 14 16:26:50 2021][solver][infos] NP COST Euro Non Proportional Cost throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] NODU Number Of Dispatched Units throughout all MC years, of all the thermal dispatchable clusters -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Preparing time-series numbers... -[Wed Apr 14 16:26:50 2021][solver][infos] MC-Years : [1 .. 3], total: 3 -[Wed Apr 14 16:26:50 2021][solver][infos] Starting the simulation -[Wed Apr 14 16:26:50 2021][solver][infos] parallel batch size : 1 -[Wed Apr 14 16:26:50 2021][solver][infos] -[Wed Apr 14 16:26:50 2021][solver][infos] Generating the thermal time-series -[Wed Apr 14 16:26:51 2021][solver][infos] Year 1 -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Starting Memory Allocation for a Weekly Optimization problem in Canonical form -[Wed Apr 14 16:26:51 2021][solver][infos] ( Problem Size :7560 Variables 3871 Constraints) -[Wed Apr 14 16:26:51 2021][solver][infos] Expected Number of Non-zero terms in Problem Matrix : 76199 -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Status of Preliminary Allocations for Generic Problem Resolution : Successful -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\interco-1-1-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\area-1-1-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-1-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-1-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-1-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-1-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-1-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-1-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-2-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-2-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-2-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-2-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-2-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-2-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-3-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-3-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-3-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-3-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-3-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-3-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-4-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-4-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-4-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-4-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-4-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-4-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-5-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-5-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-5-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-5-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-5-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-5-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-6-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-6-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-6-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-6-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-6-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-6-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-7-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-7-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-7-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-7-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-7-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-7-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-8-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-8-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-8-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-8-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-8-20210414-162651-1.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-8-20210414-162651-1.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-9-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-9-20210414-162651.txt' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:51 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-9-20210414-162651.mps' -[Wed Apr 14 16:26:51 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-9-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-9-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-9-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-10-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-10-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-10-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-10-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-10-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-10-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-11-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-11-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-11-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-11-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-11-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-11-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-12-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-12-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-12-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-12-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-12-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-12-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-13-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-13-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-13-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-13-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-13-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-13-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-14-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-14-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-14-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-14-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-14-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-14-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-15-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-15-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-15-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-15-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-15-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-15-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-16-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-16-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-16-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-16-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-16-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-16-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-17-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-17-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-17-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-17-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-17-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-17-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-18-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-18-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-18-20210414-162652.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-18-20210414-162652.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-18-20210414-162652-1.mps' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:52 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-18-20210414-162652-1.txt' -[Wed Apr 14 16:26:52 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-19-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-19-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-19-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-19-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-19-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-19-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-20-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-20-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-20-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-20-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-20-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-20-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-21-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-21-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-21-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-21-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-21-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-21-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-22-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-22-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-22-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-22-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-22-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-22-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-23-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-23-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-23-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-23-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-23-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-23-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-24-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-24-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-24-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-24-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-24-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-24-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-25-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-25-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-25-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-25-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-25-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-25-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-26-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-26-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-26-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-26-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-26-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-26-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-27-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-27-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-27-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-27-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-27-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-27-20210414-162653-1.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-28-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-28-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-28-20210414-162653.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-28-20210414-162653.txt' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:53 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-28-20210414-162653-1.mps' -[Wed Apr 14 16:26:53 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-28-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-29-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-29-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-29-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-29-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-29-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-29-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-30-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-30-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-30-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-30-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-30-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-30-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-31-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-31-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-31-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-31-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-31-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-31-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-32-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-32-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-32-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-32-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-32-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-32-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-33-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-33-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-33-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-33-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-33-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-33-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-34-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-34-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-34-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-34-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-34-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-34-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-35-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-35-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-35-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-35-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-35-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-35-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-36-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-36-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-36-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-36-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-36-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-36-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-37-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-37-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-37-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-37-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-37-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-37-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-38-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-38-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-38-20210414-162654.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-38-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-38-20210414-162654-1.mps' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-38-20210414-162654-1.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:54 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-39-20210414-162654.txt' -[Wed Apr 14 16:26:54 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-39-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-39-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-39-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-39-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-39-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-40-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-40-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-40-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-40-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-40-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-40-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-41-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-41-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-41-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-41-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-41-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-41-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-42-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-42-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-42-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-42-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-42-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-42-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-43-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-43-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-43-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-43-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-43-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-43-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-44-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-44-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-44-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-44-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-44-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-44-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-45-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-45-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-45-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-45-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-45-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-45-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-46-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-46-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-46-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-46-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-46-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-46-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-47-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-47-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-47-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-47-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-47-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-47-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-48-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-48-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-48-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-48-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-48-20210414-162655-1.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-48-20210414-162655-1.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-49-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-49-20210414-162655.txt' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:55 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-49-20210414-162655.mps' -[Wed Apr 14 16:26:55 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-49-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-49-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-49-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-50-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-50-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-50-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-50-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-50-20210414-162656-1.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-50-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-51-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-51-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-51-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-51-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-51-20210414-162656-1.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-51-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-1-52-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-1-52-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-52-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-52-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-1-52-20210414-162656-1.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-1-52-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting the annual results -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:26:56 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:26:56 2021][solver][infos] Elapsed time: Survey report: 54ms -[Wed Apr 14 16:26:56 2021][solver][infos] parallel batch size : 1 -[Wed Apr 14 16:26:56 2021][solver][infos] Year 2 -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-1-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-1-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-1-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-1-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-1-20210414-162656-1.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-1-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-2-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-2-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-2-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-2-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-2-20210414-162656-1.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-2-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-3-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-3-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-3-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-3-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-3-20210414-162656-1.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-3-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-4-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-4-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-4-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-4-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-4-20210414-162656-1.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-4-20210414-162656-1.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-5-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-5-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-5-20210414-162656.mps' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:56 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-5-20210414-162656.txt' -[Wed Apr 14 16:26:56 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-5-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-5-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-6-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-6-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-6-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-6-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-6-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-6-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-7-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-7-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-7-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-7-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-7-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-7-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-8-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-8-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-8-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-8-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-8-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-8-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-9-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-9-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-9-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-9-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-9-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-9-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-10-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-10-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-10-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-10-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-10-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-10-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-11-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-11-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-11-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-11-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-11-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-11-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-12-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-12-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-12-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-12-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-12-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-12-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-13-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-13-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-13-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-13-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-13-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-13-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-14-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-14-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-14-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-14-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-14-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-14-20210414-162657-1.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-15-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-15-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-15-20210414-162657.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-15-20210414-162657.txt' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:57 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-15-20210414-162657-1.mps' -[Wed Apr 14 16:26:57 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-15-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-16-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-16-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-16-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-16-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-16-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-16-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-17-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-17-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-17-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-17-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-17-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-17-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-18-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-18-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-18-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-18-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-18-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-18-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-19-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-19-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-19-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-19-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-19-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-19-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-20-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-20-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-20-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-20-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-20-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-20-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-21-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-21-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-21-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-21-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-21-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-21-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-22-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-22-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-22-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-22-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-22-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-22-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-23-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-23-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-23-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-23-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-23-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-23-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-24-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-24-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-24-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-24-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-24-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-24-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-25-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-25-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-25-20210414-162658.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-25-20210414-162658.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-25-20210414-162658-1.mps' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:58 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-25-20210414-162658-1.txt' -[Wed Apr 14 16:26:58 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-26-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-26-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-26-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-26-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-26-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-26-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-27-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-27-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-27-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-27-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-27-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-27-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-28-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-28-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-28-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-28-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-28-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-28-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-29-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-29-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-29-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-29-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-29-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-29-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-30-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-30-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-30-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-30-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-30-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-30-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-31-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-31-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-31-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-31-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-31-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-31-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-32-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-32-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-32-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-32-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-32-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-32-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-33-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-33-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-33-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-33-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-33-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-33-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-34-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-34-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-34-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-34-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-34-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-34-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-35-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-35-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-35-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-35-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-35-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-35-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-36-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-36-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-36-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-36-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-36-20210414-162659-1.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-36-20210414-162659-1.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-37-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-37-20210414-162659.txt' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:26:59 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-37-20210414-162659.mps' -[Wed Apr 14 16:26:59 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-37-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-37-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-37-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-38-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-38-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-38-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-38-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-38-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-38-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-39-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-39-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-39-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-39-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-39-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-39-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-40-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-40-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-40-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-40-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-40-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-40-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-41-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-41-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-41-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-41-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-41-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-41-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-42-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-42-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-42-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-42-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-42-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-42-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-43-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-43-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-43-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-43-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-43-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-43-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-44-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-44-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-44-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-44-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-44-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-44-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-45-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-45-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-45-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-45-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-45-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-45-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-46-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-46-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-46-20210414-162700.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-46-20210414-162700.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-46-20210414-162700-1.mps' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:00 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-46-20210414-162700-1.txt' -[Wed Apr 14 16:27:00 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-47-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-47-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-47-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-47-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-47-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-47-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-48-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-48-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-48-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-48-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-48-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-48-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-49-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-49-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-49-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-49-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-49-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-49-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-50-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-50-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-50-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-50-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-50-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-50-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-51-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-51-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-51-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-51-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-51-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-51-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-2-52-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-2-52-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-52-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-52-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-2-52-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-2-52-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting the annual results -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:27:01 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:27:01 2021][solver][infos] Elapsed time: Survey report: 57ms -[Wed Apr 14 16:27:01 2021][solver][infos] parallel batch size : 1 -[Wed Apr 14 16:27:01 2021][solver][infos] Year 3 -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-1-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-1-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-1-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-1-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-1-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-1-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-2-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-2-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-2-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-2-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-2-20210414-162701-1.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-2-20210414-162701-1.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-3-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-3-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-3-20210414-162701.mps' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:01 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-3-20210414-162701.txt' -[Wed Apr 14 16:27:01 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-3-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-3-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-4-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-4-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-4-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-4-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-4-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-4-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-5-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-5-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-5-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-5-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-5-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-5-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-6-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-6-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-6-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-6-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-6-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-6-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-7-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-7-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-7-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-7-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-7-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-7-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-8-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-8-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-8-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-8-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-8-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-8-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-9-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-9-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-9-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-9-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-9-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-9-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-10-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-10-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-10-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-10-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-10-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-10-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-11-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-11-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-11-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-11-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-11-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-11-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-12-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-12-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-12-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-12-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-12-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-12-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-13-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-13-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-13-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-13-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-13-20210414-162702-1.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-13-20210414-162702-1.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-14-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-14-20210414-162702.txt' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:02 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-14-20210414-162702.mps' -[Wed Apr 14 16:27:02 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-14-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-14-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-14-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-15-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-15-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-15-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-15-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-15-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-15-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-16-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-16-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-16-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-16-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-16-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-16-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-17-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-17-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-17-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-17-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-17-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-17-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-18-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-18-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-18-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-18-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-18-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-18-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-19-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-19-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-19-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-19-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-19-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-19-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-20-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-20-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-20-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-20-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-20-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-20-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-21-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-21-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-21-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-21-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-21-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-21-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-22-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-22-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-22-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-22-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-22-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-22-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-23-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-23-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-23-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-23-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-23-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-23-20210414-162703-1.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-24-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-24-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-24-20210414-162703.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-24-20210414-162703.txt' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:03 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-24-20210414-162703-1.mps' -[Wed Apr 14 16:27:03 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-24-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-25-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-25-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-25-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-25-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-25-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-25-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-26-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-26-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-26-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-26-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-26-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-26-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-27-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-27-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-27-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-27-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-27-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-27-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-28-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-28-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-28-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-28-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-28-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-28-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-29-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-29-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-29-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-29-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-29-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-29-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-30-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-30-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-30-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-30-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-30-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-30-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-31-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-31-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-31-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-31-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-31-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-31-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-32-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-32-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-32-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-32-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-32-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-32-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-33-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-33-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-33-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-33-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-33-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-33-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-34-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-34-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-34-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-34-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-34-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-34-20210414-162704-1.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-35-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-35-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-35-20210414-162704.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-35-20210414-162704.txt' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:04 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-35-20210414-162704-1.mps' -[Wed Apr 14 16:27:04 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-35-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-36-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-36-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-36-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-36-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-36-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-36-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-37-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-37-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-37-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-37-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-37-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-37-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-38-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-38-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-38-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-38-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-38-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-38-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-39-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-39-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-39-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-39-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-39-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-39-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-40-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-40-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-40-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-40-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-40-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-40-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-41-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-41-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-41-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-41-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-41-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-41-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-42-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-42-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-42-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-42-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-42-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-42-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-43-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-43-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-43-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-43-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-43-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-43-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-44-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-44-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-44-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-44-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-44-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-44-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-45-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-45-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-45-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-45-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-45-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-45-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-46-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-46-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-46-20210414-162705.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-46-20210414-162705.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-46-20210414-162705-1.mps' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:05 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-46-20210414-162705-1.txt' -[Wed Apr 14 16:27:05 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-47-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-47-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-47-20210414-162706.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-47-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-47-20210414-162706-1.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-47-20210414-162706-1.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-48-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-48-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-48-20210414-162706.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-48-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-48-20210414-162706-1.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-48-20210414-162706-1.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-49-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-49-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-49-20210414-162706.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-49-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-49-20210414-162706-1.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-49-20210414-162706-1.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-50-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-50-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-50-20210414-162706.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-50-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-50-20210414-162706-1.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-50-20210414-162706-1.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-51-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-51-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-51-20210414-162706.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-51-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-51-20210414-162706-1.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-51-20210414-162706-1.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\variables-3-52-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\constraints-3-52-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-52-20210414-162706.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-52-20210414-162706.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\problem-3-52-20210414-162706-1.mps' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Solver output File: `D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\criterion-3-52-20210414-162706-1.txt' -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting the annual results -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:27:06 2021][solver][infos] Elapsed time: Survey report: 55ms -[Wed Apr 14 16:27:06 2021][solver][infos] The quadratic optimisation has been skipped -[Wed Apr 14 16:27:06 2021][solver][infos] Elapsed time: MC Years: 15637ms -[Wed Apr 14 16:27:06 2021][solver][infos] -[Wed Apr 14 16:27:06 2021][solver][check] Exporting the survey results... -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area2 -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : flex -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : peak -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : pv -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : semibase -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : Store_in -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : store_out -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 - area2 -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 - peak -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area1 - semibase -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area2 - flex -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : area2 - pv -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : flex - Store_in -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting results : flex - store_out -[Wed Apr 14 16:27:06 2021][solver][infos] Exporting digest... -[Wed Apr 14 16:27:06 2021][solver][infos] Elapsed time: Survey report: 220ms -[Wed Apr 14 16:27:06 2021][solver][infos] [UI] Quitting the solver gracefully -[Wed Apr 14 16:27:06 2021][solver][infos] Writing log file: D:\a\antares-xpansion\antares-xpansion\examples\xpansion-test-01\output\20210414-1626eco\simulation.log -[Wed Apr 14 16:27:06 2021][solver][infos] Done. diff --git a/examples/SmallTestFiveCandidates/output/README.txt b/examples/SmallTestFiveCandidates/output/README.txt deleted file mode 100644 index e69de29bb..000000000 diff --git a/examples/SmallTestFiveCandidates/user/expansion/candidates.ini b/examples/SmallTestFiveCandidates/user/expansion/candidates.ini index a5290a8af..961a73be5 100644 --- a/examples/SmallTestFiveCandidates/user/expansion/candidates.ini +++ b/examples/SmallTestFiveCandidates/user/expansion/candidates.ini @@ -17,7 +17,8 @@ name = pv link = area2 - pv annual-cost-per-mw = 55400 max-investment = 1000 -link-profile = capa_pv.ini +direct-link-profile = capa_pv.ini +indirect-link-profile = capa_pv.ini [4] name = battery @@ -25,12 +26,12 @@ link = area2 - flex annual-cost-per-mw = 60000 max-investment = 1000 - [5] name = transmission_line link = area1 - area2 annual-cost-per-mw = 10000 unit-size = 400 max-units = 8 -link-profile = 04_fr-05_fr.txt +direct-link-profile = 04_fr-05_fr.txt +indirect-link-profile = 04_fr-05_fr.txt diff --git a/ports/coin-or-cbc/portfile.cmake b/ports/coin-or-cbc/portfile.cmake index 144f69f75..c05382e65 100644 --- a/ports/coin-or-cbc/portfile.cmake +++ b/ports/coin-or-cbc/portfile.cmake @@ -1,12 +1,13 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO "Mizux/Cbc" - REF "5714054827d852fae3beb7a4065f84ea56f207bb" - SHA512 d9d563b7af6102ba29c522cabf983ebde31a38f7010f578bc0dca258e63245c92b975fd0a3d5b96c7eeba886034b1e188d1399eb0d67769e0fa560c23e088ebf + REF "b01a53da39577380acdb84d8a3577911c5d91a13" #stable/2.10 + SHA512 98a0e75dc1ac8ead134391ebd442d9cead0b1182620bff4058eb59e6cc843eaa9d0f70b956d1d1202836e5b3820a95107bec9e2233354080ab0a3a56dea1b20a HEAD_REF master ) -vcpkg_check_linkage(ONLY_STATIC_LIBRARY) - +if (WIN32) + vcpkg_check_linkage(ONLY_STATIC_LIBRARY) +endif() vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" ) diff --git a/ports/coin-or-cgl/portfile.cmake b/ports/coin-or-cgl/portfile.cmake index 8bc58e0ca..e735f9894 100644 --- a/ports/coin-or-cgl/portfile.cmake +++ b/ports/coin-or-cgl/portfile.cmake @@ -1,12 +1,13 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO "Mizux/Cgl" - REF "925ad49fdd958ddb51f3ecfd87d222b0ea8d26a8" - SHA512 365c204272f6d20f881ce5e14cfa3c2c1d5b0aef1ff92a7f8a889c708b2d091105bc1ba2dfdee911b3cab876af677f5ee3e55657f9fdb9356915966379587261 + REF "59d95fba6605329d615d44ac7be0be2397210d5a" #stable/0.60 + SHA512 5667c59a632bf30f43dbb993b434d81599d6933ffff874bbee92f4850229b0e6b0c20deacabc31d30ffd5c7484d048df1835e4524e98162b838deb621e94a373 HEAD_REF master ) -vcpkg_check_linkage(ONLY_STATIC_LIBRARY) - +if (WIN32) + vcpkg_check_linkage(ONLY_STATIC_LIBRARY) +endif() vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" ) diff --git a/ports/coin-or-clp/portfile.cmake b/ports/coin-or-clp/portfile.cmake index 355bef5ec..42f4ab2ce 100644 --- a/ports/coin-or-clp/portfile.cmake +++ b/ports/coin-or-clp/portfile.cmake @@ -1,12 +1,13 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO "Mizux/Clp" - REF "d8cdeb5fd6d51ac7d0f50778d2b2feccaa716228" - SHA512 58e737deeb5276e4894fbebac0f60da13e8419b6cff531be381bc582320ceeab0f4688c8ec29d4e7248b6cc5256edb27b2e98496913262ce0f2960b6b6ab598c + REF "914e0af16285ab6b0514947296213a0e67e80880" #stable/1.17 + SHA512 c6a90007dc3177bb37800ae5c5c632403437df3a9ee54dfecf433e4c8b2ea403047c179ffdeef33b3aeab00c7ad2d859f4f56cca4488502dca8866889d909f1f HEAD_REF master ) -vcpkg_check_linkage(ONLY_STATIC_LIBRARY) - +if (WIN32) + vcpkg_check_linkage(ONLY_STATIC_LIBRARY) +endif() vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" ) diff --git a/ports/coin-or-osi/portfile.cmake b/ports/coin-or-osi/portfile.cmake index 737fbbeef..051789d43 100644 --- a/ports/coin-or-osi/portfile.cmake +++ b/ports/coin-or-osi/portfile.cmake @@ -1,12 +1,13 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO "Mizux/Osi" - REF "d724c4a5a0d87669d63e44179c468d8a02f4f69a" - SHA512 fb173c04e3920c863e4d29e202cbaf182ee21332dc05ce293ffc39ead1b124f86f9682cc12032d216a712ea9aa3d0c98176bcbcd1b217e93afc6ce5a1ced68ed + REF "d2809dd1ab01eb5c766edce7cea2ca2c1c5ecd2a" #stable/0.108 + SHA512 0b15a823666f7d381dadf360b6443fd28e9ba1f2c4c157309e10318d0a836014ec2a37bce0f0efdd9960769d839352aca0ba60f862b9c7eeaa96fabdffb7e9ca HEAD_REF master ) -vcpkg_check_linkage(ONLY_STATIC_LIBRARY) - +if (WIN32) + vcpkg_check_linkage(ONLY_STATIC_LIBRARY) +endif() vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" ) diff --git a/ports/coinutils/portfile.cmake b/ports/coinutils/portfile.cmake index 153722282..5ae8608da 100644 --- a/ports/coinutils/portfile.cmake +++ b/ports/coinutils/portfile.cmake @@ -1,12 +1,14 @@ vcpkg_from_github( OUT_SOURCE_PATH SOURCE_PATH REPO "Mizux/CoinUtils" - REF "d92accd9a2aa4cffe84e8f9a5a71eea06fb1ba87" - SHA512 addd95047c935fd3199f6951bf6f269887c0a66f285d4d9947b6290de24ab54867f459a340da1010451331272e4168d413ab167c52019fb4dbe486633f8b93d9 + REF "675cbb8e131f07705544a2e9074355cfa1a319b4" #stable 2.11 + SHA512 19e68fd43a90f3c6ba84aef90fc8b108550efee6345a3a467995791955322b531abf6e410ed656b10a353108e73d8558e9cb6e24aa93a273686e226d17381c48 HEAD_REF master ) -vcpkg_check_linkage(ONLY_STATIC_LIBRARY) +if (WIN32) + vcpkg_check_linkage(ONLY_STATIC_LIBRARY) +endif() vcpkg_cmake_configure( SOURCE_PATH "${SOURCE_PATH}" diff --git a/ports/sirius-solver/portfile.cmake b/ports/sirius-solver/portfile.cmake deleted file mode 100644 index 653563a75..000000000 --- a/ports/sirius-solver/portfile.cmake +++ /dev/null @@ -1,21 +0,0 @@ -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO "rte-france/sirius-solver" - REF "f1a76af11ffa36304a176f317da3c91103b9f066" - SHA512 c5ac431a8c8b4a076620ec57b6f7899d7d8e729e97fb1628cfa58dbd8313fd2252ccf63cf8797499e0f4f43b08b2974fbbbff8f2fc4f9621da973642fd0d4fbe - HEAD_REF main -) - -vcpkg_cmake_configure( - SOURCE_PATH "${SOURCE_PATH}/src" -) - -vcpkg_cmake_install() - -vcpkg_cmake_config_fixup(PACKAGE_NAME sirius_solver CONFIG_PATH cmake) - -file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") - -vcpkg_copy_pdbs() - -file(INSTALL "${SOURCE_PATH}/LICENSE.TXT" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}" RENAME copyright) diff --git a/ports/sirius-solver/vcpkg.json b/ports/sirius-solver/vcpkg.json deleted file mode 100644 index ded804499..000000000 --- a/ports/sirius-solver/vcpkg.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "name": "sirius-solver", - "version": "1.5", - "port-version": 0, - "description": "Sirius solver", - "dependencies": [ - { - "name": "vcpkg-cmake", - "host": true - }, - { - "name": "vcpkg-cmake-config", - "host": true - } - ] -} diff --git a/src/cpp/benders/benders_core/WorkerMaster.cpp b/src/cpp/benders/benders_core/WorkerMaster.cpp index 9eec0b623..1445d134c 100644 --- a/src/cpp/benders/benders_core/WorkerMaster.cpp +++ b/src/cpp/benders/benders_core/WorkerMaster.cpp @@ -24,7 +24,7 @@ WorkerMaster::WorkerMaster( const std::string &solver_name, const int log_level, int subproblems_count, SolverLogManager&solver_log_manager, const bool mps_has_alpha, Logger logger) - : Worker(logger), + : Worker(std::move(logger)), subproblems_count(subproblems_count), _mps_has_alpha(mps_has_alpha) { _is_master = true; @@ -56,7 +56,7 @@ void WorkerMaster::get(Point &x_out, double &overall_subpb_cost_under_approx, if (_solver->get_n_integer_vars() > 0) { _solver->get_mip_sol(ptr.data()); } else { - _solver->get_lp_sol(ptr.data(), NULL, NULL); + _solver->get_lp_sol(ptr.data(), nullptr, nullptr); } assert(id_single_subpb_costs_under_approx_.back() + 1 == ptr.size()); for (auto const &kvp : _id_to_name) { diff --git a/src/cpp/benders/benders_core/include/WorkerMaster.h b/src/cpp/benders/benders_core/include/WorkerMaster.h index fa64ff561..95cac1dc6 100644 --- a/src/cpp/benders/benders_core/include/WorkerMaster.h +++ b/src/cpp/benders/benders_core/include/WorkerMaster.h @@ -14,19 +14,19 @@ class WorkerMaster : public Worker { explicit WorkerMaster(Logger logger); WorkerMaster(VariableMap const &variable_map, const std::filesystem::path &path_to_mps, - const std::string &solver_name, const int log_level, + const std::string &solver_name, int log_level, int subproblems_count, SolverLogManager&solver_log_manager, bool mps_has_alpha, Logger logger); - virtual ~WorkerMaster() = default; + ~WorkerMaster() override = default; void get(Point &x0, double &overall_subpb_cost_under_approx, DblVector &single_subpb_costs_under_approx); void get_dual_values(std::vector &dual) const; - int get_number_constraint() const; + [[nodiscard]] int get_number_constraint() const; void add_cut(Point const &s, Point const &x0, double const &rhs) const; - void add_cut_by_iter(int const i, Point const &s, double const &sx0, + void add_cut_by_iter(int i, Point const &s, double const &sx0, double const &rhs) const; void add_dynamic_cut(Point const &s, double const &sx0, double const &rhs) const; @@ -36,7 +36,7 @@ class WorkerMaster : public Worker { virtual void DeactivateIntegrityConstraints() const; virtual void ActivateIntegrityConstraints() const; - virtual std::vector get_id_nb_units() const { return _id_nb_units; }; + [[nodiscard]] virtual std::vector get_id_nb_units() const { return _id_nb_units; }; private: std::vector _id_nb_units; @@ -54,7 +54,7 @@ class WorkerMaster : public Worker { void define_rhs_from_sx0(const double &sx0, const double &rhs, std::vector &rowrhs) const; - void define_matval_mclind_for_index(const int i, const Point &s, + void define_matval_mclind_for_index(int i, const Point &s, std::vector &matval, std::vector &mclind) const; void _set_upper_bounds() const; diff --git a/src/cpp/benders/benders_mpi/BendersMPI.cpp b/src/cpp/benders/benders_mpi/BendersMPI.cpp index 5db531031..672d2c5b0 100644 --- a/src/cpp/benders/benders_mpi/BendersMPI.cpp +++ b/src/cpp/benders/benders_mpi/BendersMPI.cpp @@ -4,6 +4,7 @@ #include #include +#include "include/memory.h" #include "CriterionComputation.h" #include "Timer.h" @@ -243,6 +244,41 @@ void BendersMpi::free() { _world.barrier(); } +namespace { +struct self_mem { + long double vm_usage = 0.0; + long resident_set = 0.0; +}; +self_mem process_mem_usage() { + self_mem mem; + + // the two fields we want + unsigned long vsize; + long rss; + { + std::string ignore; + std::ifstream ifs("/proc/self/stat", std::ios_base::in); + ifs >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> + ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> + ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> + ignore >> vsize >> rss; + } + + long page_size_kb = sysconf(_SC_PAGE_SIZE) / + 1024; // in case x86-64 is configured to use 2MB pages + return {vsize / 1024.0l / 1024.l, rss * page_size_kb}; +} +} +void BendersMpi::memory() { + auto [dispo, total] = Memory::MemoryUsageGo(); + auto [vm, rss] = process_mem_usage(); + _logger->display_message("Memory usage: " + std::to_string(dispo) + "/" + + std::to_string(total)); + _logger->display_message("VM: " + std::to_string(vm) + "Mb; RSS: " + + std::to_string(rss)); +} + + /*! * \brief Run Benders algorithm in parallel * @@ -258,6 +294,7 @@ void BendersMpi::Run() { } _data.number_of_subproblem_solved = _data.nsubproblem; while (!_data.stop) { + memory(); ++_data.it; ResetSimplexIterationsBounds(); diff --git a/src/cpp/benders/benders_mpi/CMakeLists.txt b/src/cpp/benders/benders_mpi/CMakeLists.txt index 3b0dff6ec..c1fe70c74 100644 --- a/src/cpp/benders/benders_mpi/CMakeLists.txt +++ b/src/cpp/benders/benders_mpi/CMakeLists.txt @@ -22,6 +22,8 @@ add_library (benders_mpi_core STATIC ${CMAKE_CURRENT_SOURCE_DIR}/BendersMPI.cpp ${CMAKE_CURRENT_SOURCE_DIR}/OuterLoopBenders.cpp ${CMAKE_CURRENT_SOURCE_DIR}/BendersMpiOuterLoop.cpp + include/memory.h + memory.cpp ) target_link_libraries (benders_mpi_core diff --git a/src/cpp/benders/benders_mpi/include/BendersMPI.h b/src/cpp/benders/benders_mpi/include/BendersMPI.h index 383b840ce..3935a9442 100644 --- a/src/cpp/benders/benders_mpi/include/BendersMPI.h +++ b/src/cpp/benders/benders_mpi/include/BendersMPI.h @@ -58,6 +58,8 @@ class BendersMpi : public BendersBase { mpi::environment &_env; + void memory(); + protected: [[nodiscard]] bool shouldParallelize() const final { return false; } void PreRunInitialization(); diff --git a/src/cpp/benders/benders_mpi/include/memory.h b/src/cpp/benders/benders_mpi/include/memory.h new file mode 100644 index 000000000..953c8273f --- /dev/null +++ b/src/cpp/benders/benders_mpi/include/memory.h @@ -0,0 +1,86 @@ +/* +** This file is part of libyuni, a cross-platform C++ framework (http://libyuni.org). +** +** This Source Code Form is subject to the terms of the Mozilla Public License +** v.2.0. If a copy of the MPL was not distributed with this file, You can +** obtain one at http://mozilla.org/MPL/2.0/. +** +** github: https://github.com/libyuni/libyuni/ +** gitlab: https://gitlab.com/libyuni/libyuni/ (mirror) +*/ +#pragma once + +#include +namespace Memory +{ +/*! +** \brief Get the amount of total physical memory +** +** When information about the memory usage can not be retrieved, a default +** value will be used. (see defaultAvailable) +** \return A value in bytes +*/ +uint64_t Total(); + +/*! +** \brief Get the amount of available physical memory +** +** When information about the memory usage can not be retrieved, a default +** value will be used. (see defaultAvailable) +** \return A value in bytes +*/ +uint64_t Available(); + +struct memory_usage { + float available_go = 0; + float total_go = 0; +}; +memory_usage MemoryUsageGo(); + +/*! +** \brief Information about the current memory usage +** +** When information about the current memory usage could not be +** retrieved, some default values are used (see defaultTotal and defaultAvailable). +** This is the case for example when the implementation is missing for the +** current operating system. This method ensures that the values are always valid. +** +** Performance tip: If you're interrested in a single value, you should use +** the corresponding global routine instead, which will be at least as +** fast as this this class, sometimes better. +*/ +class Usage final +{ + public: + //! \name Constructor + //@{ + /*! + ** \brief Default constructor + */ + Usage(){ + update(); + } + /*! + ** \brief Copy constructor + ** + ** The values will remain untouched. + */ + Usage(const Usage& copy) = default; + //@} + + /*! + ** \brief Update information about the current memory usage + ** + ** This routine is automatically called by the constructor. + */ + bool update(); + + public: + //! The amount of the available physical memory (in bytes) + uint64_t available = 0; + //! The amount of the total physical memory (in bytes) + uint64_t total = 0; + +}; // class Usage + +} // namespace Memory diff --git a/src/cpp/benders/benders_mpi/memory.cpp b/src/cpp/benders/benders_mpi/memory.cpp new file mode 100644 index 000000000..c6079a48f --- /dev/null +++ b/src/cpp/benders/benders_mpi/memory.cpp @@ -0,0 +1,231 @@ +/* +** This file is part of libyuni, a cross-platform C++ framework (http://libyuni.org). +** +** This Source Code Form is subject to the terms of the Mozilla Public License +** v.2.0. If a copy of the MPL was not distributed with this file, You can +** obtain one at http://mozilla.org/MPL/2.0/. +** +** github: https://github.com/libyuni/libyuni/ +** gitlab: https://gitlab.com/libyuni/libyuni/ (mirror) +*/ +// memory.h: The relative path is to avoid conflict with , which +// can sometimes occur... +#include "include/memory.h" + +#if defined(__unix__) +#include +#include // sysinfo (2) +#endif + +#include +#include + +namespace Memory +{ + + //! The default amount of available physical memory + constexpr uint64_t defaultAvailable = 1024 * 1024 * 512; // 512Mo + //! The default amount of total physical memory + constexpr uint64_t defaultTotal = 1024 * 1024 * 1024; // 1Go + +#if defined(__unix__) +#define SYSTEM_MEMORY_IS_IMPLEMENTED + +namespace // anonymous +{ +//! Read a line from a file +static inline int fgetline(FILE* fp, char* s, int maxlen) +{ + int i = 0; + char c; + + while ((c = (char)fgetc(fp)) != EOF) + { + if (c == '\n') + { + *s = '\0'; + return i; + } + if (i >= maxlen) + return i; + + *s++ = c; + ++i; + } + return (!i) ? EOF : i; +} + +static inline uint64_t readvalue(char* line) +{ + // Here is a sample for /proc/meminfo : + // + // MemTotal: 1929228 kB + // MemFree: 12732 kB + // Buffers: 72176 kB + // Cached: 1076572 kB + // SwapCached: 151412 kB + // Active: 1491184 kB + // Inactive: 190832 kB + // HighTotal: 0 kB + // HighFree: 0 kB + // LowTotal: 1929228 kB + // LowFree: 12732 kB + // SwapTotal: 2096472 kB + // SwapFree: 1732964 kB + // Dirty: 736 kB + // Writeback: 0 kB + // AnonPages: 512004 kB + // Mapped: 702148 kB + // Slab: 154320 kB + // PageTables: 34712 kB + // NFS_Unstable: 0 kB + // Bounce: 0 kB + // CommitLimit: 3061084 kB + // Committed_AS: 1357596 kB + // VmallocTotal: 34359738367 kB + // VmallocUsed: 263492 kB + // VmallocChunk: 34359474679 kB + // HugePages_Total: 0 + // HugePages_Free: 0 + // HugePages_Rsvd: 0 + // Hugepagesize: 2048 kB + + // Trimming the string from the begining + while (*line == ' ' and *line != '\0') + ++line; + const char* first = line; + + // Looking for the end of the number + while (*line != ' ' and *line != '\0') + ++line; + // Tagging the end of the number + *line = '\0'; + +#ifdef YUNI_OS_32 + return (uint64_t)atol(first) * 1024u; +#else + return (uint64_t)atoll(first) * 1024u; +#endif +} + +} // anonymous namespace + +bool Usage::update() +{ + // The only good way to retrieve the memory usage is to read /proc/meminfo. + // The routine sysinfo (2) is not enough since it does not take care of + // the cache memory, returning a not valid amount of available physsical + // memory for our uses. + FILE* fd; + if ((fd = fopen("/proc/meminfo", "r"))) + { + // Resetting the amount of the total physical memory + total = 0; + // The amount of the available physical memory is the sum of 3 values : + // MemFree, Cached and Buffers. + available = 0; + + // A small buffer + char line[90]; + // A counter to reduce to abort as soon as we have read all + int remains = 8; + + // Analysing each line in /proc/meminfo, until the end-of-file or + // until we have read the 4 values that interrest us. + while (EOF != fgetline(fd, line, (uint)sizeof(line))) + { + if (!strncmp("MemTotal:", line, 9)) + { + total = readvalue(line + 10); + if (!(remains >> 1)) + break; + } + if (!strncmp("MemFree:", line, 8)) + { + available += readvalue(line + 9); + if (!(remains >> 1)) + break; + } + if (!strncmp("Cached:", line, 7)) + { + available += readvalue(line + 8); + if (!(remains >> 1)) + break; + } + if (!strncmp("Buffers:", line, 8)) + { + available += readvalue(line + 9); + if (!(remains >> 1)) + break; + } + } + + // Closing /proc/meminfo + fclose(fd); + + // Checking the amount of the total physical memory, which can not be equal to 0 + if (!total) + { + total = (uint64_t)defaultTotal; + return false; + } + return true; + } + + // Error, using default values + total = (uint64_t)defaultTotal; + available = (uint64_t)defaultAvailable; + return false; +} + +uint64_t Available() +{ + return Usage().available; +} + +uint64_t Total() +{ +#ifdef __unix__ + { + // Directly using sysinfo (2), which should be faster than parsing /proc/meminfo + struct sysinfo s; + return (!sysinfo(&s)) ? (s.mem_unit * s.totalram) : (uint64_t)defaultTotal; + } +#else + { + return Usage().total; + } +#endif +} +memory_usage MemoryUsageGo() { + auto total = Total(); + auto dispo = Available(); + return {.available_go = dispo / 1024.f / 1024.f / 1024.f, + .total_go = total / 1024.f / 1024.f / 1024.f}; +} + +#endif // YUNI_OS_LINUX + +#ifndef SYSTEM_MEMORY_IS_IMPLEMENTED +#error Yuni::System::Memory: The implementation is missing for this operating system + +uint64_t Total() +{ + return defaultTotal; +} + +uint64_t Available() +{ + return defaultAvailable; +} + +bool Usage::update() +{ + available = defaultAvailable; + total = defaultTotal; + return false; +} + +#endif // Fallback + +} // namespace Memory diff --git a/src/cpp/exe/lpnamer/CMakeLists.txt b/src/cpp/exe/lpnamer/CMakeLists.txt index df7594402..023f1482b 100644 --- a/src/cpp/exe/lpnamer/CMakeLists.txt +++ b/src/cpp/exe/lpnamer/CMakeLists.txt @@ -18,6 +18,6 @@ target_link_libraries (lp_namer PRIVATE ${PROJECT_NAME}::problem_generation_main ${PROJECT_NAME}::lp_namer_helper - Boost::serialization) +) install(TARGETS lp_namer DESTINATION bin) diff --git a/src/cpp/helpers/ArchiveReader.cpp b/src/cpp/helpers/ArchiveReader.cpp index eb8491d6d..8631ba51b 100644 --- a/src/cpp/helpers/ArchiveReader.cpp +++ b/src/cpp/helpers/ArchiveReader.cpp @@ -3,6 +3,7 @@ #include #include #include +#include #include #include diff --git a/src/cpp/helpers/ArchiveWriter.cpp b/src/cpp/helpers/ArchiveWriter.cpp index 23c78b5a9..ad1a78063 100644 --- a/src/cpp/helpers/ArchiveWriter.cpp +++ b/src/cpp/helpers/ArchiveWriter.cpp @@ -3,6 +3,7 @@ #include #include +#include #include #include "LogUtils.h" @@ -26,12 +27,13 @@ void ArchiveWriter::InitFileInfo() { } int32_t ArchiveWriter::Open() { // disk-spanning is disabled, meaning that only one file is created + std::unique_lock lock(mutex_); const auto err = mz_zip_writer_open_file( pmz_zip_writer_instance_, ArchivePath().string().c_str(), 0 /* disk-spanning disabled */, 1 /* append */); if (err != MZ_OK) { - Close(); - Delete(); + CloseGuarded(); + DeleteGuarded(); std::stringstream errMsg; errMsg << "Open Archive: " << ArchivePath().string() << std::endl; throw ArchiveIOGeneralException(err, errMsg.str(), LOGLOCATION); @@ -125,6 +127,16 @@ int32_t ArchiveWriter::CloseInternal() { return MZ_OK; } +int32_t ArchiveWriter::CloseGuarded() { + if (pmz_zip_writer_instance_) { + return mz_zip_writer_close(pmz_zip_writer_instance_); + } + return MZ_OK; +} +void ArchiveWriter::DeleteGuarded() { + return mz_zip_writer_delete(&pmz_zip_writer_instance_); +} + void ArchiveWriter::DeleteInternal() { std::unique_lock lock(mutex_); return mz_zip_writer_delete(&pmz_zip_writer_instance_); diff --git a/src/cpp/helpers/ArchiveWriter.h b/src/cpp/helpers/ArchiveWriter.h index d44da2d4f..4f6337531 100644 --- a/src/cpp/helpers/ArchiveWriter.h +++ b/src/cpp/helpers/ArchiveWriter.h @@ -22,6 +22,8 @@ class ArchiveWriter : public ArchiveIO { int32_t Close() override; void Delete() override; + int32_t CloseGuarded(); + void DeleteGuarded(); int Open() override; void InitFileInfo(); diff --git a/src/cpp/lpnamer/main/CMakeLists.txt b/src/cpp/lpnamer/main/CMakeLists.txt index bfa797d0f..c2b3cc229 100644 --- a/src/cpp/lpnamer/main/CMakeLists.txt +++ b/src/cpp/lpnamer/main/CMakeLists.txt @@ -10,6 +10,7 @@ # Problem Generation runner lib # --------------------------------------------------------------------------- +find_package(ittapi REQUIRED) add_library (problem_generation_main STATIC ${CMAKE_CURRENT_SOURCE_DIR}/ProblemGenerationExeOptions.cpp ${CMAKE_CURRENT_SOURCE_DIR}/ProblemGeneration.cpp @@ -17,6 +18,8 @@ add_library (problem_generation_main STATIC ${CMAKE_CURRENT_SOURCE_DIR}/include/ProblemGenerationOptions.h ${CMAKE_CURRENT_SOURCE_DIR}/Version.cpp ${CMAKE_CURRENT_SOURCE_DIR}/Version.h + include/memory.h + memory.cpp ) target_link_libraries (problem_generation_main @@ -25,8 +28,13 @@ target_link_libraries (problem_generation_main ${PROJECT_NAME}::lp_namer_model ${PROJECT_NAME}::lp_namer_input_reader ${PROJECT_NAME}::lp_namer_problem_modifier - Boost::boost Boost::program_options - helpers) + Boost::boost Boost::program_options Boost::serialization + helpers + Antares::solver_api + ittapi::ittnotify + PUBLIC + Antares::antares-solver-simulation +) get_target_property(helpers_include helpers INTERFACE_INCLUDE_DIRECTORIES) @@ -36,6 +44,9 @@ target_include_directories(problem_generation_main ${helpers_include} ) +if (SAVE) + target_compile_definitions(problem_generation_main PUBLIC -DSAVE) +endif () add_library (${PROJECT_NAME}::problem_generation_main ALIAS problem_generation_main) diff --git a/src/cpp/lpnamer/main/ProblemGeneration.cpp b/src/cpp/lpnamer/main/ProblemGeneration.cpp index 135e56465..d887c7204 100644 --- a/src/cpp/lpnamer/main/ProblemGeneration.cpp +++ b/src/cpp/lpnamer/main/ProblemGeneration.cpp @@ -1,7 +1,18 @@ #include "include/ProblemGeneration.h" +#include +#include +#include + +#include +#include +#include +#include +#include +#include #include +#include #include #include @@ -29,9 +40,151 @@ #include "XpansionProblemsFromAntaresProvider.h" #include "ZipProblemsProviderAdapter.h" #include "config.h" +#include "include/memory.h" static const std::string LP_DIRNAME = "lp"; +namespace boost::serialization { +template +void serialize(Archive& ar, Antares::Solver::ConstantDataFromAntares& data, const unsigned int version) { + ar& data.VariablesCount; + ar& data.ConstraintesCount; + ar& data.CoeffCount; + ar& data.VariablesType; + ar& data.Mdeb; + ar& data.NotNullTermCount; + ar& data.ColumnIndexes; + ar& data.ConstraintsMatrixCoeff; + ar& data.VariablesMeaning; + ar& data.ConstraintsMeaning; +} + +template +void serialize(Archive& ar, Antares::Solver::WeeklyProblemId& data, const unsigned int version) { + ar& data.year; + ar& data.week; +} + + +template +void serialize(Archive& ar, Antares::Solver::WeeklyDataFromAntares& data, const unsigned int version) { + ar& data.Direction; + ar& data.Xmax; + ar& data.Xmin; + ar& data.LinearCost; + ar& data.RHS; + ar& data.name; + ar& data.variables; + ar& data.constraints; +} + +template +void serialize(Archive& ar, Antares::Solver::LpsFromAntares& data, const unsigned int version) { + ar& data.constantProblemData; + ar& data.weeklyProblems; +} +} // namespace boost::serialization + +namespace { +std::uintmax_t disk_usage_percent(const std::filesystem::space_info& si, + bool is_privileged = false) noexcept +{ + if (constexpr std::uintmax_t X(-1); + si.capacity == 0 || si.free == 0 || si.available == 0 || + si.capacity == X || si.free == X || si.available == X + ) + return 100; + + std::uintmax_t unused_space = si.free, capacity = si.capacity; + if (!is_privileged) + { + const std::uintmax_t privileged_only_space = si.free - si.available; + unused_space -= privileged_only_space; + capacity -= privileged_only_space; + } + const std::uintmax_t used_space{capacity - unused_space}; + return 100 * used_space / capacity; +} + +void print_disk_space_info(auto const& dirs, int width = 14) +{ + (std::cout << std::left).imbue(std::locale("en_US.UTF-8")); + + for (const auto s : {"Capacity", "Free", "Available", "Use%", "Dir"}) + std::cout << "│ " << std::setw(width) << s << ' '; + + for (std::cout << '\n'; auto const& dir : dirs) + { + std::error_code ec; + const std::filesystem::space_info si = std::filesystem::space(dir, ec); + for (auto x : {si.capacity, si.free, si.available, disk_usage_percent(si)}) + std::cout << "│ " << std::setw(width) << static_cast(x / 1024.f /1024.f) << ' '; + std::cout << "│ " << dir << '\n'; + } +} + +struct self_mem { + long double vm_usage = 0.0; + long resident_set = 0.0; +}; +self_mem process_mem_usage() +{ + self_mem mem; + + // the two fields we want + unsigned long vsize; + long rss; + { + std::string ignore; + std::ifstream ifs("/proc/self/stat", std::ios_base::in); + ifs >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore + >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore >> ignore + >> ignore >> ignore >> vsize >> rss; + } + + long page_size_kb = sysconf(_SC_PAGE_SIZE) / 1024; // in case x86-64 is configured to use 2MB pages + return {vsize / 1024.0l / 1024.l, rss * page_size_kb}; +} +static std::string study_dir = ""; + +namespace fs = std::filesystem; +std::uintmax_t calculate_directory_size(const fs::path& directory) { + std::uintmax_t total_size = 0; + std::error_code ec; + + for (const auto& entry : fs::recursive_directory_iterator(directory, ec)) { + if (ec) { + std::cerr << "Error accessing " << entry.path() << ": " << ec.message() << "\n"; + continue; + } + if (fs::is_regular_file(entry.status())) { + total_size += fs::file_size(entry.path(), ec); + if (ec) { + std::cerr << "Error getting size of " << entry.path() << ": " << ec.message() << "\n"; + } + } + } + + return total_size; +} + +void memory() { + auto [dispo, total] = Memory::MemoryUsageGo(); + auto [vm, rss] = process_mem_usage(); + std::cout << "====================================\n"; + std::cout << "Memory usage: " << dispo << "/" << total << "\n"; + std::cout << "VM: " << vm << "Mb; RSS: " << rss << "\n"; + std::cout << "------------------------------------\n"; + using namespace std::string_literals; + const auto dirs = {"/scratch"s, "/tmp"s}; + print_disk_space_info(dirs); + std::cout << "------------------------------------\n"; + std::uintmax_t dir_size = calculate_directory_size(study_dir); + std::cout << "Total size of directory " << study_dir << " is " << dir_size / 1024.f / 1024.f << " Mo." << "\n"; + std::cout << "====================================" << "\n"; +} +} + void CreateDirectories(const std::filesystem::path& output_path) { if (!std::filesystem::exists(output_path)) { std::filesystem::create_directories(output_path); @@ -53,6 +206,47 @@ ProblemGeneration::ProblemGeneration(ProblemGenerationOptions& options) } } +std::filesystem::path ProblemGeneration::performAntaresSimulation() { +//#ifdef SAVE +// auto results = Antares::API::PerformSimulation(options_.StudyPath()); +// //Add parallel +// //Handle errors +// if (results.error) { +// std::cerr << "Error: " << results.error->reason << "\n"; +// exit(1); +// } +// +// lps_ = std::move(results.antares_problems); +// std::ofstream ofs("lps.txt"); +// boost::archive::text_oarchive oa(ofs); +// oa << lps_; +// //TODO save simulation path +// return {results.simulationPath}; +//#else +// std::ifstream ifs("lps.txt"); +// boost::archive::text_iarchive ia(ifs); +// ia >> lps_; +// return "/home/marechaljas/Téléchargements/study_1_integer/output/20240715-1416eco"; +//#endif +{ + std::cout << "Memory usage before simulation:\n "; + memory(); +} + auto results = Antares::API::PerformSimulation(options_.StudyPath()); + + { + std::cout << "Memory usage after simulation:\n"; + memory(); + } // //Add parallel + // //Handle errors + if (results.error) { + std::cerr << "Error: " << results.error->reason << "\n"; + exit(1); + } + lps_ = std::move(results.antares_problems); + return {results.simulationPath}; +} + std::filesystem::path ProblemGeneration::updateProblems() { using namespace std::string_literals; std::filesystem::path xpansion_output_dir; @@ -61,22 +255,28 @@ std::filesystem::path ProblemGeneration::updateProblems() { if (mode_ == SimulationInputMode::ARCHIVE) { xpansion_output_dir = options_.deduceXpansionDirIfEmpty(xpansion_output_dir, archive_path); + study_dir = xpansion_output_dir.parent_path(); + } if (mode_ == SimulationInputMode::ANTARES_API) { - throw std::runtime_error("SimulationInputMode API Not implemented yet"); + simulation_dir_ = performAntaresSimulation(); + __itt_resume(); } if (mode_ == SimulationInputMode::FILE) { simulation_dir_ = options_.XpansionOutputDir(); // Legacy naming. // options_.XpansionOutputDir() point in fact to a simulation output from // antares + study_dir = simulation_dir_; } if (mode_ == SimulationInputMode::ANTARES_API || mode_ == SimulationInputMode::FILE) { xpansion_output_dir = simulation_dir_; + study_dir = simulation_dir_; } + const auto log_file_path = xpansion_output_dir / "lp"s / "ProblemGenerationLog.txt"s; @@ -149,7 +349,7 @@ void validateMasterFormulation( << LOGLOCATION << "Invalid formulation argument : argument must be " "\"integer\" or \"relaxed\"" - << std::endl; + << "\n"; exit(1); } } @@ -157,8 +357,8 @@ void validateMasterFormulation( std::vector> ProblemGeneration::getXpansionProblems( SolverLogManager& solver_log_manager, const std::string& solver_name, const std::vector& mpsList, std::filesystem::path& lpDir_, - std::shared_ptr& reader, bool with_archive = true - ) { + std::shared_ptr& reader, bool with_archive = true, + const Antares::Solver::LpsFromAntares& lps = {}) { std::vector problem_names; std::transform(mpsList.begin(), mpsList.end(), std::back_inserter(problem_names), @@ -175,7 +375,8 @@ std::vector> ProblemGeneration::getXpansionProblems( return adapter->provideProblems(solver_name, solver_log_manager); } case SimulationInputMode::ANTARES_API: { - throw std::runtime_error("SimulationInputMode API Not implemented yet"); + auto adapter = std::make_unique(lps); + return adapter->provideProblems(solver_name, solver_log_manager); } default: // TODO : log @@ -183,6 +384,7 @@ std::vector> ProblemGeneration::getXpansionProblems( } } + void ProblemGeneration::RunProblemGeneration( const std::filesystem::path& xpansion_output_dir, const std::string& master_formulation, @@ -192,7 +394,8 @@ void ProblemGeneration::RunProblemGeneration( const std::filesystem::path& log_file_path, const std::filesystem::path& weights_file, bool unnamed_problems) { (*logger)(LogUtils::LOGLEVEL::INFO) - << "Launching Problem Generation" << std::endl; + << "Launching Problem Generation" << "\n"; + memory(); validateMasterFormulation(master_formulation, logger); std::string solver_name = "CBC"; // TODO Use solver selected by user @@ -203,17 +406,22 @@ void ProblemGeneration::RunProblemGeneration( ProcessWeights(xpansion_output_dir, antares_archive_path, weights_file, logger); } - + //Print weight ok + std::cout << "Weight ok" << "\n"; + memory(); ExtractUtilsFiles(antares_archive_path, xpansion_output_dir, logger); std::vector links = getLinks(xpansion_output_dir, logger); - + std::cout << "Links ok" << "\n"; + memory(); AdditionalConstraints additionalConstraints(logger); if (!additionalConstraintFilename_l.empty()) { additionalConstraints = AdditionalConstraints(additionalConstraintFilename_l, logger); } + std::cout << "Additional constraints ok" << "\n"; + memory(); auto lpDir_ = xpansion_output_dir / "lp"; Version antares_version(ANTARES_VERSION); // TODO update the version of simulator that come with named mps @@ -222,26 +430,41 @@ void ProblemGeneration::RunProblemGeneration( unnamed_problems || antares_version < first_version_without_variables_files; (*logger)(LogUtils::LOGLEVEL::INFO) - << "rename problems: " << std::boolalpha << rename_problems << std::endl; + << "rename problems: " << std::boolalpha << rename_problems << "\n"; + + memory(); + (*logger)(LogUtils::LOGLEVEL::INFO) << "File mapping" << "\n"; auto files_mapper = FilesMapper(antares_archive_path, xpansion_output_dir); + memory(); + (*logger)(LogUtils::LOGLEVEL::INFO) << "Reading mps" << "\n"; auto mpsList = files_mapper.MpsAndVariablesFilesVect(); - + auto [dispo, total] = Memory::MemoryUsageGo(); + std::cout << "Memory usage: " + << dispo << "/" << total << "\n"; + (*logger)(LogUtils::LOGLEVEL::INFO) << "Reading mps done" << "\n"; auto solver_log_manager = SolverLogManager(log_file_path); Couplings couplings; + (*logger)(LogUtils::LOGLEVEL::INFO) << "Reading couplings" << "\n"; LinkProblemsGenerator linkProblemsGenerator( lpDir_, links, solver_name, logger, solver_log_manager, rename_problems); + memory(); + (*logger)(LogUtils::LOGLEVEL::INFO) << "Reading couplings done" << "\n"; std::shared_ptr reader = antares_archive_path.empty() ? std::make_shared() : InstantiateZipReader(antares_archive_path); - + std::cout << "Archive opend\n"; + memory(); /* Main stuff */ + std::vector> xpansion_problems = getXpansionProblems(solver_log_manager, solver_name, mpsList, lpDir_, - reader, !antares_archive_path.empty() - ); - + reader, !antares_archive_path.empty(), lps_); + lps_.weeklyProblems.clear(); + lps_.constantProblemData = {}; + (*logger)(LogUtils::LOGLEVEL::INFO) << "Problems read" << "\n"; + memory(); std::vector, ProblemData>> problems_and_data; for (int i = 0; i < xpansion_problems.size(); ++i) { @@ -253,11 +476,18 @@ void ProblemGeneration::RunProblemGeneration( problems_and_data.emplace_back(xpansion_problems.at(i), mpsList.at(i)); } } + (*logger)(LogUtils::LOGLEVEL::INFO) << "Start problem generation" << "\n"; + memory(); auto mps_file_writer = std::make_shared(lpDir_); std::for_each( std::execution::par, problems_and_data.begin(), problems_and_data.end(), [&](const auto& problem_and_data) { const auto& [problem, data] = problem_and_data; + std::cout << "Start " << data._problem_mps << "\n"; + std::cout << "Memory usage subproblem "<< + data._problem_mps << " mcyear " << problem->McYear() << " :\n"; + memory(); + std::shared_ptr variables_provider; switch (mode_) { case SimulationInputMode::FILE: @@ -286,6 +516,8 @@ void ProblemGeneration::RunProblemGeneration( linkProblemsGenerator.treat(data._problem_mps, couplings, problem.get(), variables_provider.get(), mps_file_writer.get()); + std::cout << "End " << data._problem_mps << "\n"; + }); if (mode_ == SimulationInputMode::ARCHIVE) { @@ -297,7 +529,7 @@ void ProblemGeneration::RunProblemGeneration( master_formulation, solver_name, logger, solver_log_manager); (*logger)(LogUtils::LOGLEVEL::INFO) << "Problem Generation ran in: " - << format_time_str(problem_generation_timer.elapsed()) << std::endl; + << format_time_str(problem_generation_timer.elapsed()) << "\n"; } std::shared_ptr InstantiateZipReader( const std::filesystem::path& antares_archive_path) { diff --git a/src/cpp/lpnamer/main/include/ProblemGeneration.h b/src/cpp/lpnamer/main/include/ProblemGeneration.h index 8aded3546..f8ca72d0f 100644 --- a/src/cpp/lpnamer/main/include/ProblemGeneration.h +++ b/src/cpp/lpnamer/main/include/ProblemGeneration.h @@ -4,6 +4,8 @@ #pragma once +#include + #include #include @@ -45,7 +47,10 @@ class ProblemGeneration { std::vector> getXpansionProblems( SolverLogManager& solver_log_manager, const std::string& solver_name, const std::vector& mpsList, std::filesystem::path& lpDir_, - std::shared_ptr& reader, bool with_archive); + std::shared_ptr& reader, bool with_archive, + const Antares::Solver::LpsFromAntares& lps); + Antares::Solver::LpsFromAntares lps_; SimulationInputMode mode_ = SimulationInputMode::UNKOWN; + virtual std::filesystem::path performAntaresSimulation(); std::filesystem::path simulation_dir_; }; diff --git a/src/cpp/lpnamer/main/include/memory.h b/src/cpp/lpnamer/main/include/memory.h new file mode 100644 index 000000000..953c8273f --- /dev/null +++ b/src/cpp/lpnamer/main/include/memory.h @@ -0,0 +1,86 @@ +/* +** This file is part of libyuni, a cross-platform C++ framework (http://libyuni.org). +** +** This Source Code Form is subject to the terms of the Mozilla Public License +** v.2.0. If a copy of the MPL was not distributed with this file, You can +** obtain one at http://mozilla.org/MPL/2.0/. +** +** github: https://github.com/libyuni/libyuni/ +** gitlab: https://gitlab.com/libyuni/libyuni/ (mirror) +*/ +#pragma once + +#include +namespace Memory +{ +/*! +** \brief Get the amount of total physical memory +** +** When information about the memory usage can not be retrieved, a default +** value will be used. (see defaultAvailable) +** \return A value in bytes +*/ +uint64_t Total(); + +/*! +** \brief Get the amount of available physical memory +** +** When information about the memory usage can not be retrieved, a default +** value will be used. (see defaultAvailable) +** \return A value in bytes +*/ +uint64_t Available(); + +struct memory_usage { + float available_go = 0; + float total_go = 0; +}; +memory_usage MemoryUsageGo(); + +/*! +** \brief Information about the current memory usage +** +** When information about the current memory usage could not be +** retrieved, some default values are used (see defaultTotal and defaultAvailable). +** This is the case for example when the implementation is missing for the +** current operating system. This method ensures that the values are always valid. +** +** Performance tip: If you're interrested in a single value, you should use +** the corresponding global routine instead, which will be at least as +** fast as this this class, sometimes better. +*/ +class Usage final +{ + public: + //! \name Constructor + //@{ + /*! + ** \brief Default constructor + */ + Usage(){ + update(); + } + /*! + ** \brief Copy constructor + ** + ** The values will remain untouched. + */ + Usage(const Usage& copy) = default; + //@} + + /*! + ** \brief Update information about the current memory usage + ** + ** This routine is automatically called by the constructor. + */ + bool update(); + + public: + //! The amount of the available physical memory (in bytes) + uint64_t available = 0; + //! The amount of the total physical memory (in bytes) + uint64_t total = 0; + +}; // class Usage + +} // namespace Memory diff --git a/src/cpp/lpnamer/main/memory.cpp b/src/cpp/lpnamer/main/memory.cpp new file mode 100644 index 000000000..c6079a48f --- /dev/null +++ b/src/cpp/lpnamer/main/memory.cpp @@ -0,0 +1,231 @@ +/* +** This file is part of libyuni, a cross-platform C++ framework (http://libyuni.org). +** +** This Source Code Form is subject to the terms of the Mozilla Public License +** v.2.0. If a copy of the MPL was not distributed with this file, You can +** obtain one at http://mozilla.org/MPL/2.0/. +** +** github: https://github.com/libyuni/libyuni/ +** gitlab: https://gitlab.com/libyuni/libyuni/ (mirror) +*/ +// memory.h: The relative path is to avoid conflict with , which +// can sometimes occur... +#include "include/memory.h" + +#if defined(__unix__) +#include +#include // sysinfo (2) +#endif + +#include +#include + +namespace Memory +{ + + //! The default amount of available physical memory + constexpr uint64_t defaultAvailable = 1024 * 1024 * 512; // 512Mo + //! The default amount of total physical memory + constexpr uint64_t defaultTotal = 1024 * 1024 * 1024; // 1Go + +#if defined(__unix__) +#define SYSTEM_MEMORY_IS_IMPLEMENTED + +namespace // anonymous +{ +//! Read a line from a file +static inline int fgetline(FILE* fp, char* s, int maxlen) +{ + int i = 0; + char c; + + while ((c = (char)fgetc(fp)) != EOF) + { + if (c == '\n') + { + *s = '\0'; + return i; + } + if (i >= maxlen) + return i; + + *s++ = c; + ++i; + } + return (!i) ? EOF : i; +} + +static inline uint64_t readvalue(char* line) +{ + // Here is a sample for /proc/meminfo : + // + // MemTotal: 1929228 kB + // MemFree: 12732 kB + // Buffers: 72176 kB + // Cached: 1076572 kB + // SwapCached: 151412 kB + // Active: 1491184 kB + // Inactive: 190832 kB + // HighTotal: 0 kB + // HighFree: 0 kB + // LowTotal: 1929228 kB + // LowFree: 12732 kB + // SwapTotal: 2096472 kB + // SwapFree: 1732964 kB + // Dirty: 736 kB + // Writeback: 0 kB + // AnonPages: 512004 kB + // Mapped: 702148 kB + // Slab: 154320 kB + // PageTables: 34712 kB + // NFS_Unstable: 0 kB + // Bounce: 0 kB + // CommitLimit: 3061084 kB + // Committed_AS: 1357596 kB + // VmallocTotal: 34359738367 kB + // VmallocUsed: 263492 kB + // VmallocChunk: 34359474679 kB + // HugePages_Total: 0 + // HugePages_Free: 0 + // HugePages_Rsvd: 0 + // Hugepagesize: 2048 kB + + // Trimming the string from the begining + while (*line == ' ' and *line != '\0') + ++line; + const char* first = line; + + // Looking for the end of the number + while (*line != ' ' and *line != '\0') + ++line; + // Tagging the end of the number + *line = '\0'; + +#ifdef YUNI_OS_32 + return (uint64_t)atol(first) * 1024u; +#else + return (uint64_t)atoll(first) * 1024u; +#endif +} + +} // anonymous namespace + +bool Usage::update() +{ + // The only good way to retrieve the memory usage is to read /proc/meminfo. + // The routine sysinfo (2) is not enough since it does not take care of + // the cache memory, returning a not valid amount of available physsical + // memory for our uses. + FILE* fd; + if ((fd = fopen("/proc/meminfo", "r"))) + { + // Resetting the amount of the total physical memory + total = 0; + // The amount of the available physical memory is the sum of 3 values : + // MemFree, Cached and Buffers. + available = 0; + + // A small buffer + char line[90]; + // A counter to reduce to abort as soon as we have read all + int remains = 8; + + // Analysing each line in /proc/meminfo, until the end-of-file or + // until we have read the 4 values that interrest us. + while (EOF != fgetline(fd, line, (uint)sizeof(line))) + { + if (!strncmp("MemTotal:", line, 9)) + { + total = readvalue(line + 10); + if (!(remains >> 1)) + break; + } + if (!strncmp("MemFree:", line, 8)) + { + available += readvalue(line + 9); + if (!(remains >> 1)) + break; + } + if (!strncmp("Cached:", line, 7)) + { + available += readvalue(line + 8); + if (!(remains >> 1)) + break; + } + if (!strncmp("Buffers:", line, 8)) + { + available += readvalue(line + 9); + if (!(remains >> 1)) + break; + } + } + + // Closing /proc/meminfo + fclose(fd); + + // Checking the amount of the total physical memory, which can not be equal to 0 + if (!total) + { + total = (uint64_t)defaultTotal; + return false; + } + return true; + } + + // Error, using default values + total = (uint64_t)defaultTotal; + available = (uint64_t)defaultAvailable; + return false; +} + +uint64_t Available() +{ + return Usage().available; +} + +uint64_t Total() +{ +#ifdef __unix__ + { + // Directly using sysinfo (2), which should be faster than parsing /proc/meminfo + struct sysinfo s; + return (!sysinfo(&s)) ? (s.mem_unit * s.totalram) : (uint64_t)defaultTotal; + } +#else + { + return Usage().total; + } +#endif +} +memory_usage MemoryUsageGo() { + auto total = Total(); + auto dispo = Available(); + return {.available_go = dispo / 1024.f / 1024.f / 1024.f, + .total_go = total / 1024.f / 1024.f / 1024.f}; +} + +#endif // YUNI_OS_LINUX + +#ifndef SYSTEM_MEMORY_IS_IMPLEMENTED +#error Yuni::System::Memory: The implementation is missing for this operating system + +uint64_t Total() +{ + return defaultTotal; +} + +uint64_t Available() +{ + return defaultAvailable; +} + +bool Usage::update() +{ + available = defaultAvailable; + total = defaultTotal; + return false; +} + +#endif // Fallback + +} // namespace Memory diff --git a/src/cpp/lpnamer/model/ActiveLinks.cpp b/src/cpp/lpnamer/model/ActiveLinks.cpp index c5eed1024..ff9a12e42 100644 --- a/src/cpp/lpnamer/model/ActiveLinks.cpp +++ b/src/cpp/lpnamer/model/ActiveLinks.cpp @@ -244,8 +244,10 @@ double ActiveLink::get_already_installed_capacity() const { } std::string ActiveLink::get_linkor() const { return _linkor; } +const std::string& ActiveLink::linkor() const { return _linkor; } std::string ActiveLink::get_linkex() const { return _linkex; } +const std::string& ActiveLink::linkex() const { return _linkex; } unsigned long ActiveLink::number_of_chronicles() const { // We don't check for correctness of the number of chronicles across profiles diff --git a/src/cpp/lpnamer/model/ActiveLinks.h b/src/cpp/lpnamer/model/ActiveLinks.h index 35781b983..f45045f33 100644 --- a/src/cpp/lpnamer/model/ActiveLinks.h +++ b/src/cpp/lpnamer/model/ActiveLinks.h @@ -41,7 +41,9 @@ class ActiveLink { [[nodiscard]] unsigned get_idLink() const; [[nodiscard]] LinkName get_LinkName() const; [[nodiscard]] std::string get_linkor() const; + [[nodiscard]] const std::string& linkor() const; [[nodiscard]] std::string get_linkex() const; + [[nodiscard]] const std::string& linkex() const; [[nodiscard]] double get_already_installed_capacity() const; [[nodiscard]] std::map McYearToChronicle() const { diff --git a/src/cpp/lpnamer/model/Mode.h b/src/cpp/lpnamer/model/Mode.h new file mode 100644 index 000000000..a955d39c1 --- /dev/null +++ b/src/cpp/lpnamer/model/Mode.h @@ -0,0 +1,12 @@ +// +// Created by marechaljas on 22/01/24. +// + +#pragma once + +enum class Mode { + ANTARES_API, + FILE, + ARCHIVE, + UNKOWN, +}; \ No newline at end of file diff --git a/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.cpp b/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.cpp index 8c1ee291d..ebd680a9a 100644 --- a/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.cpp +++ b/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.cpp @@ -4,31 +4,50 @@ #include "AntaresProblemToXpansionProblemTranslator.h" +#include +#include + #include "LogUtils.h" #include "multisolver_interface/SolverFactory.h" #include "solver_utils.h" +/** + * + * @Note: In case of performance issue we can accept non-const lps and work on + * references to constant and hebdo parts + */ std::shared_ptr AntaresProblemToXpansionProblemTranslator::translateToXpansionProblem( - const LpsFromAntares& lps, unsigned int year, unsigned int week, + const Antares::Solver::LpsFromAntares& lps, unsigned int year, unsigned int week, const std::string& solver_name, SolverLogManager& solver_log_manager) { SolverFactory factory; auto problem = std::make_shared( factory.create_solver(solver_name, solver_log_manager)); - problem->init(); - const auto& constant = lps._constant; - const auto& hebdo = lps._hebdo.at({year, week}); + auto constant = lps.constantProblemData; + auto hebdo = lps.weeklyProblems.at({year, week}); + problem->_name = hebdo.name; + + std::vector tmp(constant.VariablesCount, 0); + std::vector coltypes(constant.VariablesCount, 'C'); + + //roundTo10Digit(constant, hebdo); - std::vector tmp(constant->NombreDeVariables, 0); - std::vector coltypes(constant->NombreDeVariables, 'C'); + problem->add_cols(constant.VariablesCount, 0, hebdo.LinearCost.data(), + tmp.data(), {}, {}, hebdo.Xmin.data(), hebdo.Xmax.data()); - problem->add_cols(constant->NombreDeVariables, 0, hebdo->CoutLineaire.data(), - tmp.data(), {}, {}, hebdo->Xmin.data(), hebdo->Xmax.data()); + std::span signs(hebdo.Direction.data(), hebdo.Direction.size()); + auto LEG_vector = convertSignToLEG(signs); problem->add_rows( - constant->NombreDeContraintes, constant->NombreDeCoefficients, - convertSignToLEG(hebdo->Sens.data()).data(), hebdo->SecondMembre.data(), - {}, constant->Mdeb.data(), constant->IndicesColonnes.data(), - constant->CoefficientsDeLaMatriceDesContraintes.data()); + constant.ConstraintesCount, constant.CoeffCount, + convertSignToLEG(signs).data(), hebdo.RHS.data(), + nullptr, reinterpret_cast(constant.Mdeb.data()), reinterpret_cast(constant.ColumnIndexes.data()), + constant.ConstraintsMatrixCoeff.data(), {}); + for (int i = 0; i < constant.VariablesCount; ++i) { + problem->chg_col_name(i, hebdo.variables[i]); + } + for (int i = 0; i < constant.ConstraintesCount; ++i) { + problem->chg_row_name(i, hebdo.constraints[i]); + } auto rows = problem->get_nrows(); auto cols = problem->get_ncols(); auto elem = problem->get_nelems(); @@ -37,26 +56,36 @@ AntaresProblemToXpansionProblemTranslator::translateToXpansionProblem( // définissant une autre implémentation de IProblemVariablesProviderPort return problem; } +void AntaresProblemToXpansionProblemTranslator::roundTo10Digit( + Antares::Solver::ConstantDataFromAntares& constant, + Antares::Solver::WeeklyDataFromAntares& hebdo) { + auto round10 = [](auto& collection) { + std::ranges::transform(collection, collection.begin(), [](double v) { + return round(v * pow(10, 10)) * pow(10, -10); + }); + }; + + round10(hebdo.LinearCost); + round10(hebdo.Xmin); + round10(hebdo.Xmax); + round10(hebdo.RHS); + round10(constant.ConstraintsMatrixCoeff); +} + std::vector AntaresProblemToXpansionProblemTranslator::convertSignToLEG( - char* data) { + std::span data) { std::vector LEG_vector; - char c = *data; - while (c != '\0') { + //Exclude final '\0' character + std::ranges::transform(data, std::back_inserter(LEG_vector), [](char c) { if ('=' == c) { - LEG_vector.push_back('E'); - c = *++data; - continue; + return 'E'; } else if ('<' == c) { - LEG_vector.push_back('L'); - c = *++data; - continue; + return 'L'; } else if ('>' == c) { - LEG_vector.push_back('G'); - c = *++data; - continue; + return 'G'; } else { throw std::runtime_error(LOGLOCATION + "Bad character parsing " + c); } - } + }); return LEG_vector; } diff --git a/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.h b/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.h index 1c6e2fa48..5715b6f4a 100644 --- a/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.h +++ b/src/cpp/lpnamer/problem_modifier/AntaresProblemToXpansionProblemTranslator.h @@ -4,13 +4,18 @@ #pragma once +#include + +#include + #include "../model/Problem.h" -#include "LpsFromAntares.h" class AntaresProblemToXpansionProblemTranslator { public: [[nodiscard]] static std::shared_ptr translateToXpansionProblem( - const LpsFromAntares& lps, unsigned int year, unsigned int week, + const Antares::Solver::LpsFromAntares& lps, unsigned int year, unsigned int week, const std::string& solver_name, SolverLogManager& solver_log_manager); - static std::vector convertSignToLEG(char* data); + static std::vector convertSignToLEG(std::span data); + static void roundTo10Digit(Antares::Solver::ConstantDataFromAntares& constant, + Antares::Solver::WeeklyDataFromAntares& hebdo); }; diff --git a/src/cpp/lpnamer/problem_modifier/CMakeLists.txt b/src/cpp/lpnamer/problem_modifier/CMakeLists.txt index e5cddc28d..559ac001e 100644 --- a/src/cpp/lpnamer/problem_modifier/CMakeLists.txt +++ b/src/cpp/lpnamer/problem_modifier/CMakeLists.txt @@ -34,7 +34,6 @@ add_library(lp_namer_problem_modifier STATIC ${CMAKE_CURRENT_SOURCE_DIR}/ProblemVariablesFileAdapter.h ${CMAKE_CURRENT_SOURCE_DIR}/MPSFileProblemProviderAdapter.cpp ${CMAKE_CURRENT_SOURCE_DIR}/MPSFileProblemProviderAdapter.h - ${CMAKE_CURRENT_SOURCE_DIR}/LpsFromAntares.h ${CMAKE_CURRENT_SOURCE_DIR}/XpansionProblemsFromAntaresProvider.cpp ${CMAKE_CURRENT_SOURCE_DIR}/XpansionProblemsFromAntaresProvider.h ${CMAKE_CURRENT_SOURCE_DIR}/AntaresProblemToXpansionProblemTranslator.cpp @@ -44,10 +43,10 @@ add_library(lp_namer_problem_modifier STATIC ${CMAKE_CURRENT_SOURCE_DIR}/ZipProblemsProviderAdapter.h ${CMAKE_CURRENT_SOURCE_DIR}/ProblemVariablesFromProblemAdapter.cpp ${CMAKE_CURRENT_SOURCE_DIR}/ProblemVariablesFromProblemAdapter.h - FileProblemsProviderAdapter.cpp - FileProblemsProviderAdapter.h - FileProblemProviderAdapter.cpp - FileProblemProviderAdapter.h + ${CMAKE_CURRENT_SOURCE_DIR}/FileProblemsProviderAdapter.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/FileProblemsProviderAdapter.h + ${CMAKE_CURRENT_SOURCE_DIR}/FileProblemProviderAdapter.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/FileProblemProviderAdapter.h ) target_include_directories (lp_namer_problem_modifier @@ -62,6 +61,7 @@ target_link_libraries (lp_namer_problem_modifier lp_namer_helper helpers solvers + Antares::antares-solver-simulation ) add_library (${PROJECT_NAME}::lp_namer_problem_modifier ALIAS lp_namer_problem_modifier) diff --git a/src/cpp/lpnamer/problem_modifier/IXpansionProblemsProvider.h b/src/cpp/lpnamer/problem_modifier/IXpansionProblemsProvider.h index 89c3e24ed..5f6da3f56 100644 --- a/src/cpp/lpnamer/problem_modifier/IXpansionProblemsProvider.h +++ b/src/cpp/lpnamer/problem_modifier/IXpansionProblemsProvider.h @@ -5,7 +5,6 @@ #pragma once #include "../model/Problem.h" -#include "LpsFromAntares.h" class IXpansionProblemsProvider { public: diff --git a/src/cpp/lpnamer/problem_modifier/LpsFromAntares.h b/src/cpp/lpnamer/problem_modifier/LpsFromAntares.h deleted file mode 100644 index c46a7b298..000000000 --- a/src/cpp/lpnamer/problem_modifier/LpsFromAntares.h +++ /dev/null @@ -1,159 +0,0 @@ -// Je modifie la structure de Manuel en fonction des remarques que je vous ai -// faites vendredi - -#pragma once -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -struct ProblemHebdoId { - unsigned int year; - unsigned int week; - - bool operator<(const ProblemHebdoId& other) const { - if (year < other.year) return true; - if (year == other.year) return week < other.week; - return false; - } - - friend class boost::serialization::access; - template - void serialize(Archive& ar, [[maybe_unused]] const unsigned int version) { - ar& year; - ar& week; - } -}; - -class ConstantDataFromAntares; -class HebdoDataFromAntares; - -using ConstantDataFromAntaresPtr = std::shared_ptr; -using HebdoDataFromAntaresPtr = std::shared_ptr; - -// Type de données inutile car les matrices de tous les pbs hebdo sont -// identiques. Cela pourra changer à l'avenir si des coefficients de contraintes -// couplantes peuvent varier au cours du temps (ex: rendement d'une pompe à -// chaleur qui varie selon la température, FlowBased ?, etc) -using YearWeekHebdoDataFromAntares = - std::map; - -class ConstantDataFromAntares { - public: - int NombreDeVariables; // Mathématiquement : Nb colonnes de la matrice, - // Informatiquement = TypeDeVariable.size() - int NombreDeContraintes; // Mathématiqument : Nb lignes de la matrice, - // Informatiquement = Mdeb.size() - int NombreDeCoefficients; // Mathématiquement : Nb coeffs non nuls de la - // matrice, Informatiquement = Nbterm.size() = - // IndicesColonnes.size()= - // CoefficientsDeLaMatriceDesContraintes.size() - - std::vector TypeDeVariable; // Variables entières ou biniaires - std::vector - Mdeb; // Indique dans les indices dans le vecteur IndicesColonnes qui - // correspondent au début de chaque ligne. Ex : Mdeb[3] = 8 et - // Mdeb[4] = 13 -> Les termes IndicesColonnes[8] à - // IndicesColonnes[12] correspondent à des Id de colonnes de la - // ligne 3 de la matrice (en supposant que les lignes sont indexées - // à partir de 0) - std::vector Nbterm; // Nombre de termes non nuls sur chaque ligne. - // Inutile car NbTerm[i] = Mdeb[i+1] - Mdeb[i] - std::vector IndicesColonnes; // Id des colonnes des termes de - // CoefficientsDeLaMatriceDesContraintes : Ex - // IndicesColonnes[3] = 8 -> - // CoefficientsDeLaMatriceDesContraintes[8] donne la - // valeur du terme de la colonne 8, et de la ligne i où - // i est tel que Mdeb[i] <= 3 < Mdeb[i+1] - std::vector - CoefficientsDeLaMatriceDesContraintes; // Coefficients de la matrice - - std::vector - SignificationMetierDesVariables; // Nouveau par rapport à ce qu'à fait - // Manuel, contient les infos - // actuellement dans variables.txt. -> - // Utile pour l'étape - // problem_generation. Comme ce fichier - // contient des infos de type - // {signification metier, id zone, pas - // horaire} ou {signification metier, id - // lien, pas horaire}, peut-être qu'un - // vecteur de string n'est pas le - // meilleur choix (et il faudra aller - // vérifier précisément les infos dont - // on a besoin qui sont un peu - // différentes selon les variables) - std::vector - SignificationMetierDesContraintes; // Nouveau mais pas utile dans - // l'immédiat (y penser lorsqu'on - // essaiera d'investir directement sur - // les noeuds ou tester des choses - // plus complexes sur la gestion des - // stocks), idem que précédemment mais - // pour les contraintes, nécessite de - // définir précisément les infos dont - // on a besoin -> à faire lorsqu'on - // fera le nommage des contraintes - // dans Antarès ? - - friend class boost::serialization::access; - template - void serialize(Archive& ar, [[maybe_unused]] const unsigned int version) { - ar& NombreDeVariables; - ar& NombreDeContraintes; - ar& NombreDeCoefficients; - ar& TypeDeVariable; - ar& Mdeb; - ar& Nbterm; - ar& IndicesColonnes; - ar& CoefficientsDeLaMatriceDesContraintes; - ar& SignificationMetierDesVariables; - ar& SignificationMetierDesContraintes; - } -}; - -class HebdoDataFromAntares { - public: - std::vector Sens; // Sens de la contrainte : < ou > ou =, taille = - // NombreDeContraintes - std::vector Xmax; // Borne max des variables de la semaine - // considérée, taille = NombreDeVariables - std::vector Xmin; // Borne min des variables de la semaine - // considérée, taille = NombreDeVariables - std::vector - CoutLineaire; // Coefficients du vecteur de coût de la fonction objectif, - // taille = NombreDeVariables - std::vector - SecondMembre; // Vecteur des second membre des contraintes, taille = - // NombreDeContraintes - - friend class boost::serialization::access; - template - void serialize(Archive& ar, [[maybe_unused]] const unsigned int version) { - ar& Sens; - ar& Xmax; - ar& Xmin; - ar& CoutLineaire; - ar& SecondMembre; - } -}; - -class LpsFromAntares { - public: - ConstantDataFromAntaresPtr _constant; - YearWeekHebdoDataFromAntares _hebdo; - - friend class boost::serialization::access; - template - void serialize(Archive& ar, [[maybe_unused]] const unsigned int version) { - ar& _constant; - ar& _hebdo; - } -}; diff --git a/src/cpp/lpnamer/problem_modifier/ProblemVariablesFromProblemAdapter.cpp b/src/cpp/lpnamer/problem_modifier/ProblemVariablesFromProblemAdapter.cpp index d0685e1c5..cbf7fe4c9 100644 --- a/src/cpp/lpnamer/problem_modifier/ProblemVariablesFromProblemAdapter.cpp +++ b/src/cpp/lpnamer/problem_modifier/ProblemVariablesFromProblemAdapter.cpp @@ -41,15 +41,15 @@ int ReadTimeStep(const std::string& input) { } void updateMapColumn(const std::vector& links, - const std::string& link_origin, - const std::string& link_destination, colId id, + const std::string_view link_origin, + const std::string_view link_destination, colId id, int time_step, std::map& mapColumn) { auto it = std::find_if(links.begin(), links.end(), [&link_origin, &link_destination](const ActiveLink& link) { - return link.get_linkor() == link_origin && - link.get_linkex() == link_destination; + return link.linkor() == link_origin && + link.linkex() == link_destination; }); if (it != links.end()) { diff --git a/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.cpp b/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.cpp index 090095e89..0da196e30 100644 --- a/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.cpp +++ b/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.cpp @@ -10,23 +10,25 @@ #include "AntaresProblemToXpansionProblemTranslator.h" XpansionProblemsFromAntaresProvider::XpansionProblemsFromAntaresProvider( - LpsFromAntares lps) - : antares_hebdo_problems(std::move(lps)) {} + const Antares::Solver::LpsFromAntares& lps) + : antares_hebdo_problems(lps) { + std::cout << "Provider by copy \n"; +} std::vector> XpansionProblemsFromAntaresProvider::provideProblems( const std::string& solver_name, - SolverLogManager& solver_log_manager) const { + SolverLogManager& solver_log_manager) const +{ std::vector> xpansion_problems; xpansion_problems.reserve( - XpansionProblemsFromAntaresProvider::antares_hebdo_problems._hebdo - .size()); + antares_hebdo_problems.weekCount()); for (const auto& [problem_id, hebdo_data] : - XpansionProblemsFromAntaresProvider::antares_hebdo_problems._hebdo) { + antares_hebdo_problems.weeklyProblems) { xpansion_problems.push_back( AntaresProblemToXpansionProblemTranslator::translateToXpansionProblem( - XpansionProblemsFromAntaresProvider::antares_hebdo_problems, + antares_hebdo_problems, problem_id.year, problem_id.week, solver_name, solver_log_manager)); } return xpansion_problems; -} \ No newline at end of file +} diff --git a/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.h b/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.h index 7a1a09c4d..f6b8b5b1c 100644 --- a/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.h +++ b/src/cpp/lpnamer/problem_modifier/XpansionProblemsFromAntaresProvider.h @@ -4,15 +4,16 @@ #pragma once +#include + #include "../model/Problem.h" #include "IXpansionProblemsProvider.h" -#include "LpsFromAntares.h" class XpansionProblemsFromAntaresProvider : public IXpansionProblemsProvider { public: - explicit XpansionProblemsFromAntaresProvider(LpsFromAntares antares); + explicit XpansionProblemsFromAntaresProvider(const Antares::Solver::LpsFromAntares& antares); [[nodiscard]] std::vector> provideProblems( const std::string& solver_name, SolverLogManager& solver_log_manager) const override; - LpsFromAntares antares_hebdo_problems; + const Antares::Solver::LpsFromAntares& antares_hebdo_problems; }; diff --git a/src/cpp/multisolver_interface/CMakeLists.txt b/src/cpp/multisolver_interface/CMakeLists.txt index b12d262a4..899a1340e 100644 --- a/src/cpp/multisolver_interface/CMakeLists.txt +++ b/src/cpp/multisolver_interface/CMakeLists.txt @@ -53,17 +53,20 @@ target_include_directories (solvers ${xpansion_interfaces_path} ) +target_link_libraries(solvers + PUBLIC + ${CMAKE_DL_LIBS} +) #CLP-CBC if(COIN_OR) target_link_libraries (solvers - PUBLIC + PRIVATE Coin::Clp Coin::Cgl Coin::CoinUtils Coin::Osi Coin::Cbc - ${CMAKE_DL_LIBS} ) endif() diff --git a/src/cpp/multisolver_interface/environment.cc b/src/cpp/multisolver_interface/environment.cc index b8e65003f..86c157e4c 100644 --- a/src/cpp/multisolver_interface/environment.cc +++ b/src/cpp/multisolver_interface/environment.cc @@ -21,6 +21,9 @@ #include #include +namespace Solver { +class DynamicLibrary; +} namespace LoadXpress { #define STRINGIFY2(X) #X @@ -141,7 +144,7 @@ std::function XPRSgetintattrib = XpressLoader::XpressLoader(std::shared_ptr logger) : logger_(std::move(logger)) {} -bool XpressLoader::LoadXpressFunctions(DynamicLibrary* xpress_dynamic_library) { +bool XpressLoader::LoadXpressFunctions(Solver::DynamicLibrary* xpress_dynamic_library) { // This was generated with the parse_header_xpress.py script. // See the comment at the top of the script. @@ -299,7 +302,7 @@ bool XpressLoader::LoadXpressDynamicLibrary(std::string& xpresspath) { static std::string xpress_lib_path; static std::once_flag xpress_loading_done; static bool ret; - static DynamicLibrary xpress_library; + static Solver::DynamicLibrary xpress_library; // static std::mutex mutex; // mutex.lock(); diff --git a/src/cpp/multisolver_interface/include/multisolver_interface/dynamic_library.h b/src/cpp/multisolver_interface/include/multisolver_interface/dynamic_library.h index fd5909995..a333a86c5 100644 --- a/src/cpp/multisolver_interface/include/multisolver_interface/dynamic_library.h +++ b/src/cpp/multisolver_interface/include/multisolver_interface/dynamic_library.h @@ -26,6 +26,7 @@ #include #endif +namespace Solver { class DynamicLibrary { static constexpr size_t kMaxFunctionsNotFound = 10; @@ -111,5 +112,6 @@ class DynamicLibrary { } }; }; +} #endif // OR_TOOLS_BASE_DYNAMIC_LIBRARY_H_ diff --git a/src/cpp/multisolver_interface/include/multisolver_interface/environment.h b/src/cpp/multisolver_interface/include/multisolver_interface/environment.h index 022e8cfc5..fc9041d01 100644 --- a/src/cpp/multisolver_interface/include/multisolver_interface/environment.h +++ b/src/cpp/multisolver_interface/include/multisolver_interface/environment.h @@ -59,7 +59,7 @@ class XpressLoader { std::vector XpressDynamicLibraryPotentialPaths(); std::string GetXpressVarFromEnvironmentVariables(const char* XPRESS_var, bool verbose = true); - bool LoadXpressFunctions(DynamicLibrary* xpress_dynamic_library); + bool LoadXpressFunctions(Solver::DynamicLibrary* xpress_dynamic_library); int loadLicence(const std::string& lib_path, bool verbose); }; diff --git a/src/python/antares_xpansion/config_loader.py b/src/python/antares_xpansion/config_loader.py index 895be53d4..85efacb7c 100644 --- a/src/python/antares_xpansion/config_loader.py +++ b/src/python/antares_xpansion/config_loader.py @@ -7,15 +7,15 @@ import re import shutil import sys -from pathlib import Path import zipfile +from pathlib import Path from antares_xpansion.chronicles_checker import ChronicleChecker -from antares_xpansion.logger import step_logger from antares_xpansion.general_data_reader import GeneralDataIniReader from antares_xpansion.input_checker import check_candidates_file, check_options from antares_xpansion.launcher_options_default_value import LauncherOptionsDefaultValues from antares_xpansion.launcher_options_keys import LauncherOptionsKeys +from antares_xpansion.logger import step_logger from antares_xpansion.optimisation_keys import OptimisationKeys from antares_xpansion.xpansionConfig import XpansionConfig from antares_xpansion.xpansion_study_reader import XpansionStudyReader @@ -106,6 +106,9 @@ def _restore_launcher_options(self): self._config.allow_run_as_root = options[ LauncherOptionsKeys.allow_run_as_root_key() ] + self._config.memory = options[ + LauncherOptionsKeys.memory_key() + ] def _verify_settings_ini_file_exists(self): if not os.path.isfile(self._get_settings_ini_filepath()): @@ -345,11 +348,14 @@ def additional_constraints(self): return "" return self._get_constraints_file_path_in_constraints_dir(additional_constraints_filename) + def memory(self): + return self._config.memory + def simulation_lp_path(self): return self._simulation_lp_path() def _simulation_lp_path(self): - return self.xpansion_simulation_output() / "lp" + return Path(self.xpansion_simulation_output()) / "lp" def xpansion_simulation_output(self) -> Path: if self._xpansion_simulation_name == "last": @@ -518,7 +524,7 @@ def _set_xpansion_simulation_name(self): xpansion_dir_suffix ="-Xpansion" self._xpansion_simulation_name = self._last_study - if self.step() in ["resume", "sensitivity"] : + if self.step() in ["resume", "sensitivity"] : self._xpansion_simulation_name = self._last_study if self.is_zip(self._last_study): self._xpansion_simulation_name = self._last_study.parent / self._last_study.stem @@ -537,9 +543,10 @@ def _set_xpansion_simulation_name(self): else: self._xpansion_simulation_name = self._last_study self._last_study = self._last_study.parent / ( - self._last_study.stem[: -len(xpansion_dir_suffix)] + ".zip" + self._last_study.stem[: -len(xpansion_dir_suffix)] + ".zip" ) - + elif self.step() == "full" and self.memory(): + self._xpansion_simulation_name = self._last_study else: self._xpansion_simulation_name = self._last_study.parent / \ (self._last_study.stem+"-Xpansion") @@ -557,7 +564,10 @@ def update_last_study_with_sensitivity_results(self): def is_antares_study_output(self, study: Path): _, ext = os.path.splitext(study) - return ext == ".zip" or os.path.isdir(study) + if self.memory() and '-Xpansion' not in study.name: # memory mode we work with files essentially + return os.path.isdir(study) + else: + return ext == ".zip" or os.path.isdir(study) def last_modified_study(self, root_dir:Path)-> Path: list_dir = os.listdir(root_dir) diff --git a/src/python/antares_xpansion/driver.py b/src/python/antares_xpansion/driver.py index cfde50ea2..0319e3713 100644 --- a/src/python/antares_xpansion/driver.py +++ b/src/python/antares_xpansion/driver.py @@ -10,12 +10,12 @@ from antares_xpansion.antares_driver import AntaresDriver from antares_xpansion.benders_driver import BendersDriver, SolversExe from antares_xpansion.config_loader import ConfigLoader -from antares_xpansion.logger import step_logger +from antares_xpansion.full_run_driver import FullRunDriver from antares_xpansion.general_data_processor import GeneralDataProcessor +from antares_xpansion.logger import step_logger from antares_xpansion.problem_generator_driver import ProblemGeneratorDriver, ProblemGeneratorData from antares_xpansion.resume_study import ResumeStudy, ResumeStudyData from antares_xpansion.sensitivity_driver import SensitivityDriver -from antares_xpansion.full_run_driver import FullRunDriver from antares_xpansion.study_updater_driver import StudyUpdaterDriver @@ -37,13 +37,15 @@ def __init__(self, config_loader: ConfigLoader): self.antares_driver = AntaresDriver( self.config_loader.antares_exe() ) - self.problem_generator_driver = ProblemGeneratorDriver(ProblemGeneratorData(keep_mps=self.config_loader.keep_mps(), - additional_constraints=self.config_loader.additional_constraints(), - user_weights_file_path=self.config_loader.weights_file_path(), - weight_file_name_for_lp=self.config_loader.weight_file_name(), - lp_namer_exe_path=self.config_loader.lp_namer_exe(), - active_years=self.config_loader.active_years - )) + data = ProblemGeneratorData(keep_mps=self.config_loader.keep_mps(), + additional_constraints=self.config_loader.additional_constraints(), + user_weights_file_path=self.config_loader.weights_file_path(), + weight_file_name_for_lp=self.config_loader.weight_file_name(), + lp_namer_exe_path=self.config_loader.lp_namer_exe(), + active_years=self.config_loader.active_years, + memory=self.config_loader.memory(), + ) + self.problem_generator_driver = ProblemGeneratorDriver(data) self.benders_driver = BendersDriver( SolversExe( @@ -69,7 +71,7 @@ def launch(self): launch antares xpansion steps """ - if self.config_loader.step() == "full": + if self.config_loader.step() == "full" and not self.config_loader.memory(): self.launch_antares_step() self.logger.info("Post Antares") self.problem_generator_driver.set_output_path( @@ -86,6 +88,14 @@ def launch(self): self.config_loader.allow_run_as_root()) self.clean_step() + elif self.config_loader.step() == "full" and self.config_loader.memory(): + self.update_study_settings(memory_mode=True) + self.launch_problem_generation_step_memory() + self.launch_benders_step() + self.study_update_driver.launch( + self.config_loader.xpansion_simulation_output(), self.config_loader.json_file_path(), + self.config_loader.keep_mps()) + elif self.config_loader.step() == "antares": self.launch_antares_step() @@ -121,9 +131,7 @@ def clean_step(self): shutil.rmtree(self.config_loader.xpansion_simulation_output()) def launch_antares_step(self): - self._configure_general_data_processor() - self._backup_general_data_ini() - self._update_general_data_ini() + self.update_study_settings(memory_mode=False) try: ret = self.antares_driver.launch( self.config_loader.data_dir(), self.config_loader.antares_n_cpu()) @@ -139,13 +147,21 @@ def launch_antares_step(self): self._revert_general_data_ini() raise e - def _update_general_data_ini(self): - self.gen_data_proc.change_general_data_file_to_configure_antares_execution() + def update_study_settings(self, memory_mode=False): + self._configure_general_data_processor() + self._backup_general_data_ini() + self._update_general_data_ini(memory_mode) + + def _update_general_data_ini(self, memory_mode=False): + self.gen_data_proc.change_general_data_file_to_configure_antares_execution(memory_mode) def launch_problem_generation_step(self): self.problem_generator_driver.launch( self.config_loader.simulation_output_path(), self.config_loader.is_relaxed()) + def launch_problem_generation_step_memory(self): + self.problem_generator_driver.launch_memory(self.config_loader.data_dir(), self.config_loader.is_relaxed()) + def launch_benders_step(self): self.config_loader.benders_pre_actions() self.benders_driver.launch( diff --git a/src/python/antares_xpansion/full_run_driver.py b/src/python/antares_xpansion/full_run_driver.py index 49b8d96b9..b91a27bd3 100644 --- a/src/python/antares_xpansion/full_run_driver.py +++ b/src/python/antares_xpansion/full_run_driver.py @@ -66,6 +66,7 @@ def run(self): os.chdir(lp_path) self.logger.info(f"Current directory is now: {os.getcwd()}") + self.logger.info(f"Command is {self.full_command()}") ret = subprocess.run( self.full_command(), shell=False, stdout=sys.stdout, stderr=sys.stderr, encoding='utf-8') diff --git a/src/python/antares_xpansion/general_data_processor.py b/src/python/antares_xpansion/general_data_processor.py index eb0cacc10..bd492ef54 100644 --- a/src/python/antares_xpansion/general_data_processor.py +++ b/src/python/antares_xpansion/general_data_processor.py @@ -3,8 +3,8 @@ import shutil from pathlib import Path -from antares_xpansion.logger import step_logger from antares_xpansion.general_data_reader import GeneralDataIniReader +from antares_xpansion.logger import step_logger class GeneralDataFileExceptions: @@ -39,14 +39,14 @@ def set_general_data_ini_file(self, general_data_ini_file: Path): def get_general_data_ini_file(self) -> Path: return self._general_data_ini_file - def change_general_data_file_to_configure_antares_execution(self): + def change_general_data_file_to_configure_antares_execution(self, memory_mode=False): self.logger.info("Pre Antares") ini_file_backup = self._general_data_ini_file.with_suffix( self._general_data_ini_file.suffix + ".with-playlist") shutil.copyfile(self._general_data_ini_file, ini_file_backup) config = configparser.ConfigParser(strict=False) config.read(self._general_data_ini_file) - value_to_change = self._get_values_to_change_general_data_file() + value_to_change = self._get_values_to_change_general_data_file(memory_mode) for (section, key) in value_to_change: if not config.has_section(section): config.add_section(section) @@ -78,13 +78,13 @@ def backport_playlist(self, ini_file_backup, writer, playlist_options: dict): get_general_data_ini_file, set_general_data_ini_file ) - def _get_values_to_change_general_data_file(self): + def _get_values_to_change_general_data_file(self, memory_mode=False): optimization = "optimization" general_section = "general" output_section = "output" return { - (optimization, "include-exportmps"): "optim-1", + (optimization, "include-exportmps"): "false" if memory_mode else "optim-1", (optimization, "include-exportstructure"): "true", ("adequacy patch", "include-adq-patch"): "false", (optimization, "include-tc-minstablepower"): "true" diff --git a/src/python/antares_xpansion/input_parser.py b/src/python/antares_xpansion/input_parser.py index 4040b4e29..382f92d49 100644 --- a/src/python/antares_xpansion/input_parser.py +++ b/src/python/antares_xpansion/input_parser.py @@ -1,12 +1,11 @@ import argparse -from typing import List - import sys -from antares_xpansion.launcher_options_default_value import LauncherOptionsDefaultValues +from typing import List -from antares_xpansion.xpansionConfig import InputParameters from antares_xpansion.__version__ import __version__, __antares_simulator_version__ +from antares_xpansion.launcher_options_default_value import LauncherOptionsDefaultValues from antares_xpansion.launcher_options_keys import LauncherOptionsKeys +from antares_xpansion.xpansionConfig import InputParameters class InputParser: @@ -77,6 +76,11 @@ def _initialize_parser(self): default=LauncherOptionsDefaultValues.DEFAULT_VALUE(), action='store_true', help='allow-run-as-root option (linux only)') + self.parser.add_argument("--memory", + dest=LauncherOptionsKeys.memory_key(), + default=False, + action='store_true', + help="Work in memory, don't write file if possible") def parse_args(self, args: List[str] = None) -> InputParameters: params = self.parser.parse_args(args) @@ -95,6 +99,7 @@ def parse_args(self, args: List[str] = None) -> InputParameters: keep_mps=params.keep_mps, oversubscribe=params.oversubscribe, allow_run_as_root=params.allow_run_as_root, + memory=params.memory, ) return my_parameters diff --git a/src/python/antares_xpansion/launcher_options_keys.py b/src/python/antares_xpansion/launcher_options_keys.py index 4e1f2a61d..6b15a0f69 100644 --- a/src/python/antares_xpansion/launcher_options_keys.py +++ b/src/python/antares_xpansion/launcher_options_keys.py @@ -39,3 +39,7 @@ def simulationName_key(): @staticmethod def step_key(): return "step" + + @staticmethod + def memory_key(): + return "memory" diff --git a/src/python/antares_xpansion/problem_generator_driver.py b/src/python/antares_xpansion/problem_generator_driver.py index 1c76cded8..fd503b234 100644 --- a/src/python/antares_xpansion/problem_generator_driver.py +++ b/src/python/antares_xpansion/problem_generator_driver.py @@ -21,6 +21,7 @@ class ProblemGeneratorData: weight_file_name_for_lp: str lp_namer_exe_path: Path active_years: List + memory: bool class ProblemGeneratorDriver: @@ -61,6 +62,7 @@ def __init__(self, problem_generator_data: ProblemGeneratorData) -> None: self.is_relaxed = False self._lp_path = None self.logger = step_logger(__name__, __class__.__name__) + self.memory = problem_generator_data.memory def launch(self, output_path: Path, is_relaxed: bool): """ @@ -75,6 +77,15 @@ def launch(self, output_path: Path, is_relaxed: bool): self.is_relaxed = is_relaxed self._lp_step() + def launch_memory(self, study_path: Path, is_relaxed: bool): + """ + problem generation step : getnames + lp_namer + """ + self.logger.info("Problem Generation") + self.study_path = study_path + self.is_relaxed = is_relaxed + self._lp_step() + def set_output_path(self, output_path): if output_path.exists(): @@ -103,13 +114,13 @@ def _lp_step(self): produces a file named with xpansionConfig.MPS_TXT """ - - returned_l = subprocess.run(self._get_lp_namer_command(), shell=False, + print(self._get_lp_namer_command()) + returned_l = subprocess.run(self._get_lp_namer_command(), shell=True, stdout=sys.stdout, stderr=sys.stderr) - if returned_l.returncode != 0: - raise ProblemGeneratorDriver.LPNamerExecutionError( - "ERROR: exited lpnamer with status %d" % returned_l.returncode) + #if returned_l.returncode != 0: + # raise ProblemGeneratorDriver.LPNamerExecutionError( + # "ERROR: exited lpnamer with status %d" % returned_l.returncode) def create_lp_dir(self): if os.path.isdir(self._lp_path): @@ -118,7 +129,10 @@ def create_lp_dir(self): def lp_namer_options(self): is_relaxed = 'relaxed' if self.is_relaxed else 'integer' - ret = ["-a", str(self.output_path), "-f", is_relaxed] + if self.memory: + ret = ["--study", str(self.study_path), "-f", is_relaxed] # study/output/xpansion_output_dir + else: + ret = ["-a", str(self.output_path), "-f", is_relaxed] if self.weight_file_name_for_lp: ret.extend(["-w", str(self.user_weights_file_path)]) @@ -133,8 +147,9 @@ def _get_lp_namer_command(self): if not self.lp_namer_exe_path.is_file(): raise ProblemGeneratorDriver.LPNamerExeError( f"LP namer exe: {self.lp_namer_exe_path} not found") - command = [self.lp_namer_exe_path] - command.extend(self.lp_namer_options()) + command = 'gdb -batch -ex "run ' + command += ' '.join(self.lp_namer_options()) + command += '" -ex "bt" ' + str(self.lp_namer_exe_path)# + ' 2>&1 | grep -v ^"No stack."$' return command output_path = property(get_output_path, set_output_path) diff --git a/src/python/antares_xpansion/xpansionConfig.py b/src/python/antares_xpansion/xpansionConfig.py index c10126f39..2cdc91e2a 100644 --- a/src/python/antares_xpansion/xpansionConfig.py +++ b/src/python/antares_xpansion/xpansionConfig.py @@ -38,6 +38,7 @@ class InputParameters: keep_mps: bool oversubscribe: bool allow_run_as_root: bool + memory: bool class XpansionConfig: @@ -86,6 +87,7 @@ def _get_parameters_from_arguments(self): self.keep_mps = self.input_parameters.keep_mps self.oversubscribe = self.input_parameters.oversubscribe self.allow_run_as_root = self.input_parameters.allow_run_as_root + self.memory = self.input_parameters.memory def _get_install_dir(self, install_dir): if install_dir is None: diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e96e7c844..12dc05f0c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -32,7 +32,14 @@ if (PYTHON_MODULE_pytest_FOUND AND PYTHON_MODULE_numpy_FOUND) ) set_property(TEST examples_short_sequential PROPERTY LABELS short short_sequential end_to_end) - add_test( + add_test( + NAME examples_short_memory + COMMAND Python3::Interpreter -m pytest -m short_memory --allow_run_as_root=${ALLOW_RUN_AS_ROOT} --installDir=${XPANSION_INSTALL_DIR} example_test.py + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/end_to_end/examples + ) + set_property(TEST examples_short_memory PROPERTY LABELS short short_memory end_to_end) + + add_test( NAME examples_short_mpi COMMAND Python3::Interpreter -m pytest -m short_mpi --allow_run_as_root=${ALLOW_RUN_AS_ROOT} --installDir=${XPANSION_INSTALL_DIR} example_test.py WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/end_to_end/examples diff --git a/tests/cpp/full_run/FullRunTest.cpp b/tests/cpp/full_run/FullRunTest.cpp index 084a80f98..161a1bdbd 100644 --- a/tests/cpp/full_run/FullRunTest.cpp +++ b/tests/cpp/full_run/FullRunTest.cpp @@ -69,7 +69,7 @@ TEST_P(FullRunOptionsParserTestFullPath, OptionsParsing) { const char argv8[] = "/path/to/solution.json"; pargs.push_back(argv7); pargs.push_back(argv8); - + full_run_options_options_parser_.Parse(pargs.size(), pargs.data()); ASSERT_EQ(full_run_options_options_parser_.BendersOptionsFile(), std::filesystem::path(argv6)); diff --git a/tests/cpp/lp_namer/AntaresProblemToXpansionProblemTranslatorTest.cpp b/tests/cpp/lp_namer/AntaresProblemToXpansionProblemTranslatorTest.cpp new file mode 100644 index 000000000..3be3ad649 --- /dev/null +++ b/tests/cpp/lp_namer/AntaresProblemToXpansionProblemTranslatorTest.cpp @@ -0,0 +1,22 @@ +#include "gtest/gtest.h" + +#include "AntaresProblemToXpansionProblemTranslator.h" + +TEST(AntaresProblemToXpansionProblemTranslatorTest, convertSignToLEGSpan) { + std::vector signs = {'<', '=', '>'}; + std::vector expected = {'L', 'E', 'G'}; + std::vector result = AntaresProblemToXpansionProblemTranslator::convertSignToLEG(std::span(signs.data(), signs.size())); + ASSERT_EQ(result, expected); +} + +//Fail test +TEST(AntaresProblemToXpansionProblemTranslatorTest, convertSignToLEGSpanFailWithInvalidChar) { + std::vector signs = {'<', '=', 'a'}; + ASSERT_THROW(AntaresProblemToXpansionProblemTranslator::convertSignToLEG(std::span(signs.data(), signs.size())), std::runtime_error); +} + +//'\0' in vector is error +TEST(AntaresProblemToXpansionProblemTranslatorTest, NullCharIsInvalid) { + std::vector signs = {'<', '=', '\0'}; + ASSERT_THROW(AntaresProblemToXpansionProblemTranslator::convertSignToLEG(std::span(signs.data(), signs.size())), std::runtime_error); +} \ No newline at end of file diff --git a/tests/cpp/lp_namer/CMakeLists.txt b/tests/cpp/lp_namer/CMakeLists.txt index 52f5828e9..0af7a50e1 100644 --- a/tests/cpp/lp_namer/CMakeLists.txt +++ b/tests/cpp/lp_namer/CMakeLists.txt @@ -37,6 +37,7 @@ add_executable (lp_namer_tests LpFilesExtractorTest.cpp MpsTxtWriterTest.cpp GeneralDataReadetTests.cpp + AntaresProblemToXpansionProblemTranslatorTest.cpp ) target_link_libraries (lp_namer_tests PRIVATE diff --git a/tests/cpp/lp_namer/ProblemGenerationExeOptionsTest.cpp b/tests/cpp/lp_namer/ProblemGenerationExeOptionsTest.cpp index 730e8a865..7025e936a 100644 --- a/tests/cpp/lp_namer/ProblemGenerationExeOptionsTest.cpp +++ b/tests/cpp/lp_namer/ProblemGenerationExeOptionsTest.cpp @@ -49,6 +49,11 @@ class ProblemGenerationSpyAndMock : public ProblemGeneration { unnamed_problems_ = unnamed_problems; } + private: + std::filesystem::path performAntaresSimulation() override { + return options_.StudyPath() / "simulation"; + } + public: std::filesystem::path xpansion_output_dir_; std::string master_formulation_; @@ -172,7 +177,6 @@ TEST_F(ProblemGenerationExeOptionsTest, } TEST_F(ProblemGenerationExeOptionsTest, study) { - GTEST_SKIP() << "Unimplemented"; auto test_root = std::filesystem::temp_directory_path() / std::tmpnam(nullptr); diff --git a/tests/end_to_end/examples/example_test.py b/tests/end_to_end/examples/example_test.py index a65717fad..2e94c64f6 100644 --- a/tests/end_to_end/examples/example_test.py +++ b/tests/end_to_end/examples/example_test.py @@ -1,15 +1,15 @@ -from enum import Enum +import json import os -from pathlib import Path -import sys import shutil -import json +import subprocess +import sys import zipfile +from enum import Enum +from pathlib import Path import numpy as np -import subprocess - import pytest + from src.python.antares_xpansion.candidates_reader import CandidatesReader ALL_STUDIES_PATH = Path("../../../data_test/examples") @@ -22,6 +22,14 @@ class BendersMethod(Enum): BENDERS_BY_BATCH = "benders_by_batch" +def get_json_filepath(output_dir, folder, filename): + op = [] + for path in Path(output_dir).iterdir(): + for jsonpath in Path(path / folder).rglob(filename): + op.append(jsonpath) + assert len(op) == 1 + return op[0] + def get_json_file_data(output_dir, folder, filename): data = None for path in Path(output_dir).iterdir(): @@ -69,16 +77,61 @@ def launch_xpansion(install_dir, study_path, allow_run_as_root=False, nproc: int assert process.returncode == 0 +def launch_xpansion_memory(install_dir, study_path, method: BendersMethod, allow_run_as_root=False, nproc: int = 4): + # Clean study output + remove_outputs(study_path) + + install_dir_full = str(Path(install_dir).resolve()) + + command = [ + sys.executable, + "../../../src/python/launch.py", + "--installDir", + install_dir_full, + "--dataDir", + str(study_path), + "--method", + method.value, + "--step", + "full", + "-n", + str(nproc), + "--oversubscribe", + "--memory" + ] + if allow_run_as_root == "True": + command.append("--allow-run-ans-root") + print(command) + process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None) + output = process.communicate() + if process.returncode != 0: + print(output) + + # Check return value + assert process.returncode == 0 + def assert_convergence(solution, options_data, method: BendersMethod): assert (solution["relative_gap"] <= options_data["RELATIVE_GAP"]) or ( solution["overall_cost"] * solution["relative_gap"] <= options_data["ABSOLUTE_GAP"]) or (method == BendersMethod.BENDERS_BY_BATCH and solution["ABSOLUTE_GAP"] <= options_data["ABSOLUTE_GAP"]) -def verify_solution(study_path, expected_values, expected_investment_solution, method: BendersMethod = BendersMethod.BENDERS): +def verify_solution(study_path, expected_values, expected_investment_solution, + method: BendersMethod = BendersMethod.BENDERS, use_archive=True): output_path = study_path / "output" - json_data = get_json_file_data(output_path, "expansion", "out.json") - options_data = get_json_file_data(output_path, "lp", "options.json") + + if use_archive: + json_data = get_json_file_data(output_path, "expansion", "out.json") + options_data = get_json_file_data(output_path, "lp", "options.json") + else: + json_path = get_json_filepath(output_path, "expansion", "out.json") + options_path = get_json_filepath(output_path, "lp", "options.json") + + with open(str(json_path), "r") as json_file: + json_data = json.load(json_file) + + with open(str(options_path), "r") as options_file: + options_data = json.load(options_file) solution = json_data["solution"] investment_solution = solution["values"] @@ -685,6 +738,29 @@ def test_full_study_short_sequential( tmp_study, expected_investment_solution, antares_version) +@pytest.mark.parametrize( + parameters_names, + short_parameters_values, +) +@pytest.mark.short_memory +def test_full_study_short_memory( + install_dir, + allow_run_as_root, + study_path, + expected_values, + expected_investment_solution, + tmp_path, + antares_version, +): + tmp_study = tmp_path / study_path.name + shutil.copytree(study_path, tmp_study) + launch_xpansion_memory(install_dir, tmp_study, BendersMethod.BENDERS, + allow_run_as_root, nproc=1) + verify_solution(tmp_study, expected_values, expected_investment_solution, use_archive=False) + verify_study_update( + tmp_study, expected_investment_solution, antares_version) + + @pytest.mark.parametrize( parameters_names, short_parameters_values, diff --git a/tests/end_to_end/examples/pytest.ini b/tests/end_to_end/examples/pytest.ini index 798ccc435..ac792c7ee 100644 --- a/tests/end_to_end/examples/pytest.ini +++ b/tests/end_to_end/examples/pytest.ini @@ -7,6 +7,7 @@ markers = long_sequential: mark a test as non-parallel long long_mpi: mark a test as parallel long short_sequential: mark a test as non-parallel short + short_memory: mark a test as short and use antares in memory short_mpi: mark a test as parallel short short_benders_by_batch_mpi: benders by batch short mpi tests medium_benders_by_batch_mpi: benders by batch medium mpi tests diff --git a/tests/end_to_end/lpnamer/test_lpnamerEndToEnd.py b/tests/end_to_end/lpnamer/test_lpnamerEndToEnd.py index 3cd8e5cb0..90e1e0e92 100644 --- a/tests/end_to_end/lpnamer/test_lpnamerEndToEnd.py +++ b/tests/end_to_end/lpnamer/test_lpnamerEndToEnd.py @@ -119,7 +119,6 @@ def test_lp_multiple_candidates(install_dir, test_dir, master_mode, option_mode, @pytest.mark.parametrize("study_dir", test_data_study_option) @pytest.mark.parametrize("master_mode", ["integer"]) @pytest.mark.parametrize("option_mode", [OptionType.STUDY]) -@pytest.mark.skip(reason="study option not implemented yet") def test_lp_with_study_option(install_dir, study_dir, master_mode, option_mode, setup_study, tmp_path): launch_and_compare_lp_with_reference_study(install_dir, master_mode, setup_study) diff --git a/tests/python/test_full_run_driver.py b/tests/python/test_full_run_driver.py index 498a8b3ab..506aa32a1 100644 --- a/tests/python/test_full_run_driver.py +++ b/tests/python/test_full_run_driver.py @@ -14,7 +14,8 @@ class TestFullRunDriver: def setup_method(self): self.pb_gen_data = ProblemGeneratorData(keep_mps=False, additional_constraints="str", user_weights_file_path="", - weight_file_name_for_lp="", lp_namer_exe_path=Path("lp.exe"), active_years=[1, 2]) + weight_file_name_for_lp="", lp_namer_exe_path=Path("lp.exe"), + active_years=[1, 2], memory=False) self.benders_driver_options_file = "options_file.json" diff --git a/tests/python/test_problem_generator_driver.py b/tests/python/test_problem_generator_driver.py index 7d7647407..5ab70e300 100644 --- a/tests/python/test_problem_generator_driver.py +++ b/tests/python/test_problem_generator_driver.py @@ -28,7 +28,8 @@ def setup_method(self): weight_file_name_for_lp="", lp_namer_exe_path=Path( ""), - active_years=[]) + active_years=[], + memory=False) def test_problem_generator_data(self): @@ -68,7 +69,8 @@ def test_clear_old_log(self, tmp_path): user_weights_file_path=Path(""), weight_file_name_for_lp="", lp_namer_exe_path=lp_namer_file, - active_years=[]) + active_years=[], + memory=False) self._create_empty_area_file(tmp_path) self._create_empty_interco_file(tmp_path) output_zipped = get_zipped_output(tmp_path) @@ -95,7 +97,8 @@ def test_clean_lp_dir_before_run(self, tmp_path): user_weights_file_path=Path(""), weight_file_name_for_lp="", lp_namer_exe_path=lp_namer_file, - active_years=[]) + active_years=[], + memory=False) self._create_empty_area_file(tmp_path) self._create_empty_interco_file(tmp_path) output_zipped = get_zipped_output(tmp_path) diff --git a/vcpkg.json b/vcpkg.json index a2ba41901..b7823828f 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -24,6 +24,10 @@ "name": "boost-algorithm", "version>=": "1.81.0" }, + { + "name": "boost-serialization", + "version>=": "1.81.0" + }, "yaml-cpp", { "name": "minizip-ng", @@ -32,10 +36,6 @@ "features": [ "zlib" ] - }, - { - "name": "sirius-solver", - "version>=": "1.5" } ] }