dictionary: Get rid of case indexes.
[pspp] / src / data / case-map.h
index 13e2ef190f4a0f79716bf3d3d40a4da99f8b05e8..a74921c38b87517ba697e44e8337cbc7b281b59c 100644 (file)
@@ -32,7 +32,6 @@ struct casewriter;
 struct ccase;
 struct dictionary;
 
-struct case_map *case_map_clone (const struct case_map *);
 void case_map_destroy (struct case_map *);
 struct ccase *case_map_execute (const struct case_map *, struct ccase *);
 
@@ -49,10 +48,6 @@ struct case_map_stage *case_map_stage_create (const struct dictionary *);
 void case_map_stage_destroy (struct case_map_stage *);
 struct case_map *case_map_stage_get_case_map (const struct case_map_stage *);
 
-/* For eliminating "holes" in a case. */
-struct case_map *case_map_to_compact_dict (const struct dictionary *d,
-                                           unsigned int exclude_classes);
-
 /* For mapping cases for one dictionary to another based on
    variable names within the dictionary. */
 struct case_map *case_map_by_name (const struct dictionary *old,