Questions tagged [planning]

A branch of artificial intelligence concerned with generating multi-part solutions to problems. Examples include game-playing AI, industrial automation, turn-by-turn directions

Automated planning and scheduling is the sub-field of artificial intelligence concerned with generating multi-part solutions to problems.

Some familiar examples of planning algorithms and systems include:

  • The "Minimax" algorithm for choosing the best move in a two-player game (such as Tic-Tac-Toe, or Chess)
  • The "A*" algorithm for heuristic search
  • GPS navigation software, providing turn-by-turn driving directions
  • Unmanned aerial vehicles ("drones") perform automatic corrections to stay on course despite changes in wind or other disruptions

Commonly used University textbooks on the subject:

139 questions
-1
votes
2 answers

Change var value with link

I have do a custom page with a planning of the actual week, and the week is defined by the today's day. I need to put link for previous and next week, and i want to make a link to reopen my page with today'day + 7 (for next) or -7 (for…
Sanalol
  • 57
  • 1
  • 6
-2
votes
1 answer

What's the difference between the lifted representation and the grounded representation?

What's the difference between those two representations of a planning problem?
Xtalker
  • 11
  • 3
-3
votes
1 answer

How to improve a weekly planning system to create an Excel spread sheet that doesn't not just list SUN as a day, but lists each day of the week?

Here is the simple program that I am working on: import openpyxl from openpyxl import Workbook from openpyxl.utils.exceptions import InvalidFileException import webbrowser CATEGORIES = { "Housing": 0.3, "Emergency Fund": 0.1, …
Evan Gertis
  • 1,796
  • 2
  • 25
  • 59
1 2 3
9
10