We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b13f8ba commit 412d6abCopy full SHA for 412d6ab
example/main.f90
@@ -1,15 +1,12 @@
1
program main
2
!! Framework for Extensible Asynchronous Task Scheduling
3
- use application_m, only: application_t
4
use application_generator_m, only : generate_application
5
use image_m, only: image_t
6
use task_payload_map_m, only: task_payload_map_t
7
implicit none
8
9
- type(application_t) :: application
10
type(image_t) :: image
11
type(task_payload_map_t) :: results
12
13
- application = generate_application()
14
- results = image%run(application)
+ results = image%run(generate_application())
15
end program
0 commit comments