Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Greta array print 480 #644

Merged
merged 11 commits into from
Jul 30, 2024
Prev Previous commit
Next Next commit
tweaking colours
  • Loading branch information
njtierney committed Jul 29, 2024
commit 455cc763671b5a5c51afdab5c7af6d95f78f2fbc
3 changes: 2 additions & 1 deletion R/node_class.R
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ node <- R6Class(
}

text
}
},

get_unique_name = function() {
self$unique_name <- glue::glue("node_{rhex()}")
},
Expand Down
4 changes: 2 additions & 2 deletions R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -1146,8 +1146,8 @@ node_type_colour <- function(type){
type,
variable = cli::col_red(type),
data = cli::col_green(type),
operation = cli::col_yellow(type),
distribution = cli::col_magenta(type)
operation = cli::col_cyan(type),
distribution = cli::col_yellow(type)
)

switch_cols
Expand Down