-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to two argument version of ReadPackage
The one argument form is not recommended, as it just has to split the string into two anyway, and the input looks like a path, but it isn't really, as the first part is a pacakge name, not a directory name...
- Loading branch information
Showing
2 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
ReadPackage("intpic/gap/splash_from_Viz.g"); | ||
ReadPackage("intpic/gap/ip_display.gi"); | ||
ReadPackage("intpic/gap/ip_colors.gi"); | ||
ReadPackage("intpic/gap/ip_tikz.gi"); | ||
ReadPackage("intpic/gap/ip_dot.gi"); | ||
ReadPackage("intpic/gap/ip_utils.gi"); | ||
ReadPackage("intpic/gap/ip_tables.gi"); | ||
ReadPackage("intpic/gap/ip_routines_for_NS.gi"); | ||
ReadPackage("intpic", "gap/splash_from_Viz.g"); | ||
ReadPackage("intpic", "gap/ip_display.gi"); | ||
ReadPackage("intpic", "gap/ip_colors.gi"); | ||
ReadPackage("intpic", "gap/ip_tikz.gi"); | ||
ReadPackage("intpic", "gap/ip_dot.gi"); | ||
ReadPackage("intpic", "gap/ip_utils.gi"); | ||
ReadPackage("intpic", "gap/ip_tables.gi"); | ||
ReadPackage("intpic", "gap/ip_routines_for_NS.gi"); | ||
|
||
|