Skip to content

Commit

Permalink
Fix the doc.
Browse files Browse the repository at this point in the history
  • Loading branch information
cindytsai committed Feb 14, 2024
1 parent a2d3d12 commit 28ff3fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion doc/InSituPythonAnalysis/ReloadingScript.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nav_order: 6
- Call libyt API [`yt_run_ReloadScript`]({% link libytAPI/ActivateReloadingScript.md %}#reload-script).

## Reloading Script
Reloading script feature is the same as [interactive Python prompt]({% link InSituPythonAnalysis/InteractivePythonPrompt.md %}#interactive-python-prompt), except that it uses file-based instructions to reload script and get outputs.
Reloading script feature is a file-based [interactive Python prompt]({% link InSituPythonAnalysis/InteractivePythonPrompt.md %}#interactive-python-prompt), such that user creates specific file name to send instructions to libyt and gets output from specific file.

### The Workflow -- Reload and Exit
The API:
Expand Down
12 changes: 6 additions & 6 deletions doc/InSituPythonAnalysis/libytPythonModule.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ import libyt

### libyt_info

| Key | Value | Loaded by `libyt` API | Notes |
|:--------------------------------:|:-----------------------:|:---------------------:|---------------------------------------------------|
| `libyt_info["version"]` | `(major, minor, micro)` | `yt_initialize` | - `libyt` version. |
| `libyt_info["SERIAL_MODE"]` | `True/False` | `yt_initialize` | - Compile with `-DSERIAL_MODE` or not |
| `libyt_info["INTERACTIVE_MODE"]` | `True/False` | `yt_initialize` | - Compile with `-DINTERACTIVE_MODE` or not |
| Key | Value | Loaded by `libyt` API | Notes |
|:--------------------------------:|:-----------------------:|:---------------------:|---------------------------------------------|
| `libyt_info["version"]` | `(major, minor, micro)` | `yt_initialize` | - `libyt` version. |
| `libyt_info["SERIAL_MODE"]` | `True/False` | `yt_initialize` | - Compile with `-DSERIAL_MODE` or not |
| `libyt_info["INTERACTIVE_MODE"]` | `True/False` | `yt_initialize` | - Compile with `-DINTERACTIVE_MODE` or not |
| `libyt_info["JUPYTER_KERNEL"]` | `True/False` | `yt_initialize` | - Compile with `-DJUPYTER_KERNELF` or not |
| `libyt_info["SUPPORT_TIMER"]` | `True/False` | `yt_initialize` | - Compile with `-DSUPPORT_TIMER` or not |
| `libyt_info["SUPPORT_TIMER"]` | `True/False` | `yt_initialize` | - Compile with `-DSUPPORT_TIMER` or not |

### param_yt

Expand Down

0 comments on commit 28ff3fc

Please sign in to comment.