Skip to content

Commit

Permalink
Renamed file for DefaultValueAxiomsTask.
Browse files Browse the repository at this point in the history
  • Loading branch information
salome-eriksson committed Jul 5, 2024
1 parent ce974b9 commit ad93a1b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/search/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,8 @@ create_fast_downward_library(
HELP "Core task transformations"
SOURCES
tasks/cost_adapted_task
tasks/delegating_task
tasks/negated_axioms_task
tasks/default_value_axioms_task
tasks/delegating_task
tasks/root_task
CORE_LIBRARY
)
Expand Down
2 changes: 1 addition & 1 deletion src/search/heuristics/cea_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "../plugins/plugin.h"

#include "../task_utils/task_properties.h"
#include "../tasks/negated_axioms_task.h"
#include "../tasks/default_value_axioms_task.h"
#include "../utils/logging.h"

#include <cassert>
Expand Down
2 changes: 1 addition & 1 deletion src/search/heuristics/cg_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "../plugins/plugin.h"
#include "../task_utils/task_properties.h"
#include "../tasks/negated_axioms_task.h"
#include "../tasks/default_value_axioms_task.h"
#include "../utils/logging.h"

#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion src/search/heuristics/relaxation_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "../plugins/plugin.h"
#include "../task_utils/task_properties.h"
#include "../tasks/negated_axioms_task.h"
#include "../tasks/default_value_axioms_task.h"
#include "../utils/collections.h"
#include "../utils/logging.h"
#include "../utils/timer.h"
Expand Down
2 changes: 1 addition & 1 deletion src/search/landmarks/landmark_heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "../plugins/plugin.h"
#include "../task_utils/successor_generator.h"
#include "../tasks/cost_adapted_task.h"
#include "../tasks/negated_axioms_task.h"
#include "../tasks/default_value_axioms_task.h"
#include "../tasks/root_task.h"
#include "../task_utils/task_properties.h"
#include "../utils/markup.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "negated_axioms_task.h"
#include "default_value_axioms_task.h"

#include "../task_proxy.h"

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef TASKS_NEGATED_AXIOMS_TASK_H
#define TASKS_NEGATED_AXIOMS_TASK_H
#ifndef TASKS_DEFAULT_VALUE_AXIOMS_TASK_H
#define TASKS_DEFAULT_VALUE_AXIOMS_TASK_H

#include "delegating_task.h"

Expand Down

0 comments on commit ad93a1b

Please sign in to comment.