Skip to content

Commit

Permalink
Merge branch 'color-for-mesh-and-grid' into 'development'
Browse files Browse the repository at this point in the history
using specific colors for mesh and grid solver

See merge request damask/DAMASK!980
  • Loading branch information
dmentock committed Oct 2, 2024
2 parents 4cbc97a + 3987053 commit e442868
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/CLI.f90
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,24 @@ subroutine CLI_init()
! http://patorjk.com/software/taag/#p=display&f=Lean&t=DAMASK%203
#ifdef DEBUG
print'(a)', IO_color([255,0,0])
print'(1x,a,/)', 'debug version - debug version - debug version - debug version - debug version'
#else
print'(a)', IO_color([67,128,208])
print'(1x,a)', 'debug version - debug version - debug version - debug version - debug version'
#endif
print'(a)', IO_color([67,128,208])
print'(1x,a)', ' _/_/_/ _/_/ _/ _/ _/_/ _/_/_/ _/ _/ _/_/_/'
print'(1x,a)', ' _/ _/ _/ _/ _/_/ _/_/ _/ _/ _/ _/ _/ _/'
print'(1x,a)', ' _/ _/ _/_/_/_/ _/ _/ _/ _/_/_/_/ _/_/ _/_/ _/_/'
print'(1x,a)', ' _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/ _/'
print'(1x,a)', '_/_/_/ _/ _/ _/ _/ _/ _/ _/_/_/ _/ _/ _/_/_/'
#if defined(GRID)
print'(a)', IO_color([123,207,68])
print'(1x,a)', 'Grid solver'
#elif defined(MESH)
print'(a)', IO_color([230,150,68])
print'(1x,a)', 'Mesh solver'
#endif
#ifdef DEBUG
print'(/,1x,a)', 'debug version - debug version - debug version - debug version - debug version'
print'(a)', IO_color([255,0,0])
print'(1x,a)', 'debug version - debug version - debug version - debug version - debug version'
#endif
print'(a)', IO_color()

Expand Down

0 comments on commit e442868

Please sign in to comment.