Groups keyboard shortcuts have been updated
Dismiss
See shortcuts

Installing Fast Downard

22 views
Skip to first unread message

Daniel Schwartz

unread,
Mar 21, 2025, 10:03:09 AMMar 21
to Fast Downward
I'm new to Fast Downward and am having trouble installing it.  I'm following the instructions at https://www.google.com/search?q=how+to+install+fast+downward+on+windows+10&rlz=1C1CHZN_enUS1122US1122&oq=how+to+install+fast+downward+on+windows+10&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIHCAEQIRigATIHCAIQIRigATIHCAMQIRigATIHCAQQIRigATIHCAUQIRigAdIBCjE4NTkwajFqMTWoAgywAgE&sourceid=chrome&ie=UTF-8

I've installed Visual Studio and built the project.  When I try to run fastdownward.py, it tells me that I need to first need to run build.py.  Here is what I get:
------------------------------------------------------------------------------------------------------
PS C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward-release-24.06.1\downward-release-24.06.1> py ./build.py
Building configuration release.
Executing command "cmake -S C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward-release-24.06.1\downward-release-24.06.1\src -B C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward-release-24.06.1\downward-release-24.06.1\builds\release -G NMake Makefiles -DCMAKE_BUILD_TYPE=Release"
CMake Error at CMakeLists.txt:28 (project):
  Running

   'nmake' '-?'

  failed with:

   no such file or directory


CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
-- Configuring incomplete, errors occurred!
Traceback (most recent call last):
  File "C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", line 139, in <module>
    main()
    ~~~~^^
  File "C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", line 135, in main
    build(config_name, CONFIGS[config_name], build_parameters)
    ~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", line 105, in build
    try_run(generator_cmd)
    ~~~~~~~^^^^^^^^^^^^^^^
  File "C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", line 88, in try_run
    subprocess.check_call(cmd)
    ~~~~~~~~~~~~~~~~~~~~~^^^^^
  File "C:\Users\Dan\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", line 421, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['cmake', '-S', 'C:\\Users\\Dan\\Documents\\Projects\\Planning\\Fast Downward\\downward-release-24.06.1\\downward-release-24.06.1\\src', '-B', 'C:\\Users\\Dan\\Documents\\Projects\\Planning\\Fast Downward\\downward-release-24.06.1\\downward-release-24.06.1\\builds\\release', '-G', 'NMake Makefiles', '-DCMAKE_BUILD_TYPE=Release']' returned non-zero exit status 1.
--------------------------------------------------------------------------------------------------------

How can deal with this?

Florian Pommerening

unread,
Mar 21, 2025, 10:19:06 AMMar 21
to fast-d...@googlegroups.com
Hi Daniel,

which instructions are you following (the link you posted goes to the
Google results about it and in particular the first result is a fork of
Fast Downward with the last push 4 years ago. The current build
instructions are available here:
https://github.com/aibasel/downward/blob/main/BUILD.md

Judging by your log output, you are trying a native build on Windows
(i.e., not using the WSL, and not creating a Visual Studio project file,
which are both alternative ways of compiling on Windows). For that to
work, you need an installation of Visual Studio and to execute the build
command in Visual Studio's Developer PowerShell.

The error you are getting says that "nmake" is not found. NMake is
Visual Studio's build system and should be available on the Developer
PowerShell. You can try this out by executing "nmake" in the Shell. If
that doesn't work, you are either in the wrong shell, or there is an
issue with your Visual Studio installation.

Cheers
Florian
> --
> You received this message because you are subscribed to the Google
> Groups "Fast Downward" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to fast-downwar...@googlegroups.com <mailto:fast-
> downward+u...@googlegroups.com>.
> To view this discussion visit https://groups.google.com/d/msgid/fast-
> downward/9089a5f2-aded-4432-89eb-2de77b0b806fn%40googlegroups.com
> <https://groups.google.com/d/msgid/fast-downward/9089a5f2-
> aded-4432-89eb-2de77b0b806fn%40googlegroups.com?
> utm_medium=email&utm_source=footer>.

Daniel Schwartz

unread,
Mar 21, 2025, 12:21:23 PMMar 21
to fast-d...@googlegroups.com

Hi Florian,

 

Thanks.  I didn’t understand that I needed to run build.py from the Visual Studio terminal.  I was trying to use PowerShell.  That was the answer I needed.  It’s all working now.

 

Dan

 

From: fast-d...@googlegroups.com <fast-d...@googlegroups.com> On Behalf Of Florian Pommerening
Sent: Friday, March 21, 2025 10:19 AM
To: fast-d...@googlegroups.com
Subject: Re: [Fast Downward] Installing Fast Downard

 

Hi Daniel, which instructions are you following (the link you posted goes to the Google results about it and in particular the first result is a fork of Fast Downward with the last push 4 years ago. The current build instructions are available

Hi Daniel,
 
which instructions are you following (the link you posted goes to the 
Google results about it and in particular the first result is a fork of 
Fast Downward with the last push 4 years ago. The current build 
instructions are available here:
 
Judging by your log output, you are trying a native build on Windows 
(i.e., not using the WSL, and not creating a Visual Studio project file, 
which are both alternative ways of compiling on Windows). For that to 
work, you need an installation of Visual Studio and to execute the build 
command in Visual Studio's Developer PowerShell.
 
The error you are getting says that "nmake" is not found. NMake is 
Visual Studio's build system and should be available on the Developer 
PowerShell. You can try this out by executing "nmake" in the Shell. If 
that doesn't work, you are either in the wrong shell, or there is an 
issue with your Visual Studio installation.
 
Cheers
Florian
 
 
 
On 21.03.25 07:53, Daniel Schwartz wrote:
> I'm new to Fast Downward and am having trouble installing it.  I'm 
> q=how+to+install+fast+downward+on+windows+10&rlz=1C1CHZN_enUS1122US1122&oq=how+to+install+fast+downward+on+windows+10&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIHCAEQIRigATIHCAIQIRigATIHCAMQIRigATIHCAQQIRigATIHCAUQIRigAdIBCjE4NTkwajFqMTWoAgywAgE&sourceid=chrome&ie=UTF-8
> 
> I've installed Visual Studio and built the project.  When I try to run 
> To view this discussion visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=Yg6tbHUeM9JcQn1XTWcrPPLjLIQif3rANrR-HyHVOLI&e= 
> downward/9089a5f2-aded-4432-89eb-2de77b0b806fn%40googlegroups.com 
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_9089a5f2-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=lFeQ6RjhMdHNA-RPGz--KIfiW9K9_JMX0Ye5nwAvd7E&e=> aded-4432-89eb-2de77b0b806fn%40googlegroups.com? 
> utm_medium=email&utm_source=footer>.
 
-- 
You received this message because you are subscribed to a topic in the Google Groups "Fast Downward" group.
To unsubscribe from this topic, visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_topic_fast-2Ddownward_fXJJ-5FOvP6eg_unsubscribe&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=TNsQD5fmTn-XW9CZ-9HUYyNDB1n4O6J8h10Jfg6Ql9k&e=.
To unsubscribe from this group and all its topics, send an email to fast-downwar...@googlegroups.com.
To view this discussion visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_2c388f9a-2Dbd9e-2D4916-2Dbfa9-2Db37ac9f02c14-2540unibas.ch&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=oA__oimDGj1YcQ8s_gXNHug2b_cIhgQh5BE0xUtCSw8&e=.

Daniel Schwartz

unread,
Mar 25, 2025, 9:16:37 AMMar 25
to Fast Downward
Hello again.  I'm new here and maybe don't understand how to use this message system.  I've tried to post two messages using the "New Conversation" button on the top left, but neither message has appeared in this list and  no one has replied.  How can I post a new message/query on this list?

Malte Helmert

unread,
Mar 25, 2025, 9:19:23 AMMar 25
to fast-d...@googlegroups.com, Daniel Schwartz
Hi Dan,

many Google groups (including this one) require posts to be approved by
a moderator before they are published, because of spambots. Sometimes
this happens quickly, sometimes it takes a bit longer, especially over
the weekend.

Best,
Malte

On 25.03.25 06:03, Daniel Schwartz wrote:
> Hello again.  I'm new here and maybe don't understand how to use this
> message system.  I've tried to post two messages using the "New
> Conversation" button on the top left, but neither message has appeared
> in this list and  no one has replied.  How can I post a new message/
> query on this list?
>
> On Friday, March 21, 2025 at 12:21:23 PM UTC-4 Daniel Schwartz wrote:
>
> Hi Florian,____
>
> __ __
>
> Thanks.  I didn’t understand that I needed to run build.py from the
> Visual Studio terminal.  I was trying to use PowerShell.  That was
> the answer I needed.  It’s all working now.____
>
> __ __
>
> Dan____
>
> __ __
>
> *From:*fast-d...@googlegroups.com <fast-d...@googlegroups.com> *On
> Behalf Of *Florian Pommerening
> *Sent:* Friday, March 21, 2025 10:19 AM
> *To:* fast-d...@googlegroups.com
> *Subject:* Re: [Fast Downward] Installing Fast Downard____
>
> __ __
>
> Hi Daniel, which instructions are you following (the link you posted
> goes to the Google results about it and in particular the first
> result is a fork of Fast Downward with the last push 4 years ago.
> The current build instructions are available ____
>
> ____
>
> Hi Daniel,____
>
> __ __
>
> which instructions are you following (the link you posted goes to the____
>
> Google results about it and in particular the first result is a fork of____
>
> Fast Downward with the last push 4 years ago. The current build____
>
> instructions are available here:____
>
> https://urldefense.proofpoint.com/v2/url?
> u=https-3A__github.com_aibasel_downward_blob_main_BUILD.md&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=IBRJQMlvFzxxYaBfWDZDn6XYN7UMP58nrOWQ8Pbj04E&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_aibasel_downward_blob_main_BUILD.md&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=IBRJQMlvFzxxYaBfWDZDn6XYN7UMP58nrOWQ8Pbj04E&e=>____
>
> __ __
>
> Judging by your log output, you are trying a native build on Windows____
>
> (i.e., not using the WSL, and not creating a Visual Studio project file,____
>
> which are both alternative ways of compiling on Windows). For that to____
>
> work, you need an installation of Visual Studio and to execute the build____
>
> command in Visual Studio's Developer PowerShell.____
>
> __ __
>
> The error you are getting says that "nmake" is not found. NMake is____
>
> Visual Studio's build system and should be available on the Developer____
>
> PowerShell. You can try this out by executing "nmake" in the Shell. If____
>
> that doesn't work, you are either in the wrong shell, or there is an____
>
> issue with your Visual Studio installation.____
>
> __ __
>
> Cheers____
>
> Florian____
>
> __ __
>
> __ __
>
> __ __
>
> On 21.03.25 07:53, Daniel Schwartz wrote:____
>
> > I'm new to Fast Downward and am having trouble installing it.  I'm ____
>
> > following the instructions at https://urldefense.proofpoint.com/v2/url?
> u=https-3A__www.google.com_search-3F&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=qsu8fWQNlvydC6iN5PXVqrNtubUCu1w4voRPVFaF98Q&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__www.google.com_search-3F&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=qsu8fWQNlvydC6iN5PXVqrNtubUCu1w4voRPVFaF98Q&e=> ____
>
> > q=how+to+install+fast+downward+on+windows+10&rlz=1C1CHZN_enUS1122US1122&oq=how+to+install+fast+downward+on+windows+10&gs_lcrp=EgZjaHJvbWUyBggAEEUYOTIHCAEQIRigATIHCAIQIRigATIHCAMQIRigATIHCAQQIRigATIHCAUQIRigAdIBCjE4NTkwajFqMTWoAgywAgE&sourceid=chrome&ie=UTF-8____
>
> > ____
>
> > I've installed Visual Studio and built the project.  When I try to run ____
>
> > https://urldefense.proofpoint.com/v2/url?
> u=http-3A__fastdownward.py&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-
> v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-
> GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-
> r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=fjzUGOcHN3XmUNlE7_IkiyQGnobvGX1kjVTNXjoZa_k&e= <https://urldefense.proofpoint.com/v2/url?u=http-3A__fastdownward.py&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=fjzUGOcHN3XmUNlE7_IkiyQGnobvGX1kjVTNXjoZa_k&e=>, it tells me that I need to first need to runhttps://urldefense.proofpoint.com/v2/url?
> u=http-3A__build.py&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-
> v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-
> GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-
> r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=Tac1XdQl6VzTFp0OXf7LKebAy_JC8VSA5c44jSzaQCM&e= <https://urldefense.proofpoint.com/v2/url?u=http-3A__build.py&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=Tac1XdQl6VzTFp0OXf7LKebAy_JC8VSA5c44jSzaQCM&e=>.____
>
> >   Here is what I get:____
>
> > ------------------------------------------------------------------------------------------------------____
>
> > PS C:\Users\Dan\Documents\Projects\Planning\Fast Downward\downward- ____
>
> > release-24.06.1\downward-release-24.06.1> py ./build.py____
>
> > Building configuration release.____
>
> > Executing command "cmake -S C: ____
>
> > \Users\Dan\Documents\Projects\Planning\Fast Downward\downward- ____
>
> > release-24.06.1\downward-release-24.06.1\src -B C: ____
>
> > \Users\Dan\Documents\Projects\Planning\Fast Downward\downward- ____
>
> > release-24.06.1\downward-release-24.06.1\builds\release -G NMake ____
>
> > Makefiles -DCMAKE_BUILD_TYPE=Release"____
>
> > CMake Error at CMakeLists.txt:28 (project):____
>
> >    Running____
>
> > ____
>
> >     'nmake' '-?'____
>
> > ____
>
> >    failed with:____
>
> > ____
>
> >     no such file or directory____
>
> > ____
>
> > ____
>
> > CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage____
>
> > CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage____
>
> > -- Configuring incomplete, errors occurred!____
>
> > Traceback (most recent call last):____
>
> >    File "C:\Users\Dan\Documents\Projects\Planning\Fast ____
>
> > Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", ____
>
> > line 139, in <module>____
>
> >      main()____
>
> >      ~~~~^^____
>
> >    File "C:\Users\Dan\Documents\Projects\Planning\Fast ____
>
> > Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", ____
>
> > line 135, in main____
>
> >      build(config_name, CONFIGS[config_name], build_parameters)____
>
> >      ~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^____
>
> >    File "C:\Users\Dan\Documents\Projects\Planning\Fast ____
>
> > Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", ____
>
> > line 105, in build____
>
> >      try_run(generator_cmd)____
>
> >      ~~~~~~~^^^^^^^^^^^^^^^____
>
> >    File "C:\Users\Dan\Documents\Projects\Planning\Fast ____
>
> > Downward\downward-release-24.06.1\downward-release-24.06.1\build.py", ____
>
> > line 88, in try_run____
>
> >      subprocess.check_call(cmd)____
>
> >      ~~~~~~~~~~~~~~~~~~~~~^^^^^____
>
> >    File "C: ____
>
> > \Users\Dan\AppData\Local\Programs\Python\Python313\Lib\subprocess.py", ____
>
> > line 421, in check_call____
>
> >      raise CalledProcessError(retcode, cmd)____
>
> > subprocess.CalledProcessError: Command '['cmake', '-S', 'C:\\Users\\Dan\ ____
>
> > \Documents\\Projects\\Planning\\Fast Downward\\downward-release-24.06.1\ ____
>
> > \downward-release-24.06.1\\src', '-B', 'C:\\Users\\Dan\\Documents\ ____
>
> > \Projects\\Planning\\Fast Downward\\downward-release-24.06.1\\downward- ____
>
> > release-24.06.1\\builds\\release', '-G', 'NMake Makefiles', '- ____
>
> > DCMAKE_BUILD_TYPE=Release']' returned non-zero exit status 1.____
>
> > --------------------------------------------------------------------------------------------------------____
>
> > ____
>
> > How can deal with this?____
>
> > ____
>
> > -- ____
>
> > You received this message because you are subscribed to the Google ____
>
> > Groups "Fast Downward" group.____
>
> > To unsubscribe from this group and stop receiving emails from it, send ____
>
> > an email to fast-downwar...@googlegroups.com <mailto:fast- ____
>
> > downward+u...@googlegroups.com>.____
>
> > To view this discussion visit https://urldefense.proofpoint.com/v2/url?
> u=https-3A__groups.google.com_d_msgid_fast-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=Yg6tbHUeM9JcQn1XTWcrPPLjLIQif3rANrR-HyHVOLI&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=Yg6tbHUeM9JcQn1XTWcrPPLjLIQif3rANrR-HyHVOLI&e=> ____
>
> > downward/9089a5f2-aded-4432-89eb-2de77b0b806fn%40googlegroups.com <http://40googlegroups.com> ____
>
> > <https://urldefense.proofpoint.com/v2/url?
> u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_9089a5f2-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=lFeQ6RjhMdHNA-RPGz--KIfiW9K9_JMX0Ye5nwAvd7E&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_9089a5f2-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=lFeQ6RjhMdHNA-RPGz--KIfiW9K9_JMX0Ye5nwAvd7E&e=>> aded-4432-89eb-2de77b0b806fn%40googlegroups.com <http://40googlegroups.com>?____
>
> > utm_medium=email&utm_source=footer>.____
>
> __ __
>
> -- ____
>
> You received this message because you are subscribed to a topic in the Google Groups "Fast Downward" group.____
>
> To unsubscribe from this topic, visithttps://urldefense.proofpoint.com/v2/url?
> u=https-3A__groups.google.com_d_topic_fast-2Ddownward_fXJJ-5FOvP6eg_unsubscribe&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=TNsQD5fmTn-XW9CZ-9HUYyNDB1n4O6J8h10Jfg6Ql9k&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_topic_fast-2Ddownward_fXJJ-5FOvP6eg_unsubscribe&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=TNsQD5fmTn-XW9CZ-9HUYyNDB1n4O6J8h10Jfg6Ql9k&e=>.____
>
> To unsubscribe from this group and all its topics, send an email tofast-downwar...@googlegroups.com.____
>
> To view this discussion visithttps://urldefense.proofpoint.com/v2/url?
> u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_2c388f9a-2Dbd9e-2D4916-2Dbfa9-2Db37ac9f02c14-2540unibas.ch&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=oA__oimDGj1YcQ8s_gXNHug2b_cIhgQh5BE0xUtCSw8&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_2c388f9a-2Dbd9e-2D4916-2Dbfa9-2Db37ac9f02c14-2540unibas.ch&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=oA__oimDGj1YcQ8s_gXNHug2b_cIhgQh5BE0xUtCSw8&e=>.____
>
> --
> You received this message because you are subscribed to the Google
> Groups "Fast Downward" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to fast-downwar...@googlegroups.com <mailto:fast-
> downward+u...@googlegroups.com>.
> To view this discussion visit https://groups.google.com/d/msgid/fast-
> downward/761326db-ffbd-44af-ab72-20c898bf1041n%40googlegroups.com
> <https://groups.google.com/d/msgid/fast-downward/761326db-ffbd-44af-
> ab72-20c898bf1041n%40googlegroups.com?utm_medium=email&utm_source=footer>.

Daniel Schwartz

unread,
Mar 25, 2025, 11:35:56 AMMar 25
to fast-d...@googlegroups.com

Hi Malte,

 

Thanks for the explanation.  I wasn’t sure how your system works.

 

Dan

 

From: fast-d...@googlegroups.com <fast-d...@googlegroups.com> On Behalf Of Malte Helmert
Sent: Tuesday, March 25, 2025 9:19 AM
To: fast-d...@googlegroups.com; Daniel Schwartz <d...@danielgschwartz.com>
Subject: Re: [Fast Downward] Installing Fast Downard

 

Hi Dan, many Google groups (including this one) require posts to be approved by a moderator before they are published, because of spambots. Sometimes this happens quickly, sometimes it takes a bit longer, especially over the weekend. Best,

Hi Dan,
 
many Google groups (including this one) require posts to be approved by 
a moderator before they are published, because of spambots. Sometimes 
this happens quickly, sometimes it takes a bit longer, especially over 
the weekend.
 
Best,
Malte
 
On 25.03.25 06:03, Daniel Schwartz wrote:
> Hello again.  I'm new here and maybe don't understand how to use this 
> message system.  I've tried to post two messages using the "New 
> Conversation" button on the top left, but neither message has appeared 
> in this list and  no one has replied.  How can I post a new message/ 
> query on this list?
> 
> On Friday, March 21, 2025 at 12:21:23PM UTC-4 Daniel Schwartz wrote:
> 
>     Hi Florian,____
> 
>     __ __
> 
>     > downward/9089a5f2-aded-4432-89eb-2de77b0b806fn%40googlegroups.com <https://urldefense.proofpoint.com/v2/url?u=http-3A__40googlegroups.com&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=jt-ghGjkKx1uDxBcvRihTQ9MD3xTpqQIOZ7Lusfdh86hyk9pprIV4suXJzefzxNf&s=dYjcNArC1jTqENKvh3IInrWVuhTCAVcdWlBAacBukQ4&e=> ____
> 
>     > <https://urldefense.proofpoint.com/v2/url?>     u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_9089a5f2-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=lFeQ6RjhMdHNA-RPGz--KIfiW9K9_JMX0Ye5nwAvd7E&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_9089a5f2-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=lFeQ6RjhMdHNA-RPGz--KIfiW9K9_JMX0Ye5nwAvd7E&e=>> aded-4432-89eb-2de77b0b806fn%40googlegroups.com <https://urldefense.proofpoint.com/v2/url?u=http-3A__40googlegroups.com&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=jt-ghGjkKx1uDxBcvRihTQ9MD3xTpqQIOZ7Lusfdh86hyk9pprIV4suXJzefzxNf&s=dYjcNArC1jTqENKvh3IInrWVuhTCAVcdWlBAacBukQ4&e=>?____
> 
>     > utm_medium=email&utm_source=footer>.____
> 
>     __ __
> 
>     -- ____
> 
>     You received this message because you are subscribed to a topic in the Google Groups "Fast Downward" group.____
> 
>     To unsubscribe from this topic, visithttps://urldefense.proofpoint.com/v2/url?
>     u=https-3A__groups.google.com_d_topic_fast-2Ddownward_fXJJ-5FOvP6eg_unsubscribe&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=TNsQD5fmTn-XW9CZ-9HUYyNDB1n4O6J8h10Jfg6Ql9k&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_topic_fast-2Ddownward_fXJJ-5FOvP6eg_unsubscribe&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=TNsQD5fmTn-XW9CZ-9HUYyNDB1n4O6J8h10Jfg6Ql9k&e=>.____
> 
>     To unsubscribe from this group and all its topics, send an email tofast-downwar...@googlegroups.com.____
> 
>     To view this discussion visithttps://urldefense.proofpoint.com/v2/url?
>     u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_2c388f9a-2Dbd9e-2D4916-2Dbfa9-2Db37ac9f02c14-2540unibas.ch&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=oA__oimDGj1YcQ8s_gXNHug2b_cIhgQh5BE0xUtCSw8&e= <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_2c388f9a-2Dbd9e-2D4916-2Dbfa9-2Db37ac9f02c14-2540unibas.ch&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=aEdFsHhOLTk-r_x7evZVyAk30jliK9D0ZYycoYryOUG4m1LG6C0gT4xpFG0MasEB&s=oA__oimDGj1YcQ8s_gXNHug2b_cIhgQh5BE0xUtCSw8&e=>.____
> 
> -- 
> You received this message because you are subscribed to the Google 
> Groups "Fast Downward" group.
> To unsubscribe from this group and stop receiving emails from it, send 
> an email to fast-downwar...@googlegroups.com <mailto:fast- 
> downward+u...@googlegroups.com>.
> To view this discussion visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=jt-ghGjkKx1uDxBcvRihTQ9MD3xTpqQIOZ7Lusfdh86hyk9pprIV4suXJzefzxNf&s=LpG8cNRaX1donZ1TmdjBNlDSI9HHcmgyZLXSgYc6PAI&e= 
> downward/761326db-ffbd-44af-ab72-20c898bf1041n%40googlegroups.com 
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_fast-2Ddownward_761326db-2Dffbd-2D44af-2D&d=DwIFaQ&c=euGZstcaTDllvimEN8b7jXrwqOf-v5A_CdpgnVfiiMM&r=AbCalLxzopgQUG9LLcXdB80OM-GtDfItX76RMxNYqz4&m=jt-ghGjkKx1uDxBcvRihTQ9MD3xTpqQIOZ7Lusfdh86hyk9pprIV4suXJzefzxNf&s=12cnai-FHTLDWKJJCPFM1JotIXaKvhaSoPYR3mD1Y6c&e=> ab72-20c898bf1041n%40googlegroups.com?utm_medium=email&utm_source=footer>.
 
-- 
You received this message because you are subscribed to the Google Groups "Fast Downward" group.
Reply all
Reply to author
Forward
0 new messages