diff --git a/README.md b/README.md index 3e5b00e21e..b71e4ba413 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ We provide a short guide to install t8code in our Wiki [Installation guide](http ### Getting started To get familiar with t8code and its algorithms and data structures we recommend executing the tutorial examples in `tutorials` - and read the corresponding Wiki pages starting with [Step 0 - Helloworld](https://github.com/holke/t8code/wiki/Step-0---Hello-World). + and read the corresponding Wiki pages starting with [Step 0 - Helloworld](https://github.com/DLR-AMR/t8code/wiki/Step-0---Hello-World). A sophisticated example of a complete numerical simulation is our finite volume solver of the advection equation in `example/advection`. diff --git a/pull_request_template.md b/pull_request_template.md index e6c1982284..de9763105b 100644 --- a/pull_request_template.md +++ b/pull_request_template.md @@ -10,7 +10,7 @@ As a reviewer please read through all the code lines and make sure that the code #### General - [ ] The reviewer executed the new code features at least once and checked the results manually -- [ ] The code follows the [t8code coding guidelines](https://github.com/holke/t8code/wiki/Coding-Guideline) +- [ ] The code follows the [t8code coding guidelines](https://github.com/DLR-AMR/t8code/wiki/Coding-Guideline) - [ ] New source/header files are properly added to the Makefiles - [ ] The code is well documented - [ ] All function declarations, structs/classes and their members have a proper doxygen documentation diff --git a/scripts/README.md b/scripts/README.md index f488ff64b6..110dd9d6d3 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -4,7 +4,7 @@ This folder contains several scripts that are useful for t8code users and develo ## Indentation -The purpose of the indentation scripts is to help t8code developers to indent their code according to the t8code [indentation guidelines](https://github.com/holke/t8code/wiki/Coding-Guideline#indentation). Please read these guidelines before using these scripts. +The purpose of the indentation scripts is to help t8code developers to indent their code according to the t8code [indentation guidelines](https://github.com/DLR-AMR/t8code/wiki/Coding-Guideline#indentation). Please read these guidelines before using these scripts. #### t8indent @@ -16,7 +16,7 @@ Sometimes `t8indent` does produce undesired results. Therefore, after indenting #### pre-commit -This script should be copied to your `.git/hooks` folder. `git` then automatically checks the indentation of committed files and prevents you from committing wrongly indented files. See [Git indentation workflow](https://github.com/holke/t8code/wiki/Coding-Guideline#git-indentation-workflow). +This script should be copied to your `.git/hooks` folder. `git` then automatically checks the indentation of committed files and prevents you from committing wrongly indented files. See [Git indentation workflow](https://github.com/DLR-AMR/t8code/wiki/Coding-Guideline#git-indentation-workflow). #### check_if_file_indented.scp diff --git a/src/t8_cmesh/t8_cmesh_examples.cxx b/src/t8_cmesh/t8_cmesh_examples.cxx index ff29773130..2ffce804ea 100644 --- a/src/t8_cmesh/t8_cmesh_examples.cxx +++ b/src/t8_cmesh/t8_cmesh_examples.cxx @@ -684,7 +684,7 @@ t8_cmesh_new_hypercube (t8_eclass_t eclass, sc_MPI_Comm comm, int do_bcast, int if (do_partition) { t8_global_errorf ( "WARNING: Partitioning the hypercube cmesh is currently not supported.\n" - "Using this cmesh will crash when vertices are used. See also https://github.com/holke/t8code/issues/79\n"); + "Using this cmesh will crash when vertices are used. See also https://github.com/DLR-AMR/t8code/issues/79\n"); } mpiret = sc_MPI_Comm_rank (comm, &mpirank); diff --git a/tutorials/general/t8_step0_helloworld.cxx b/tutorials/general/t8_step0_helloworld.cxx index 8f3a533d25..db49959ec3 100644 --- a/tutorials/general/t8_step0_helloworld.cxx +++ b/tutorials/general/t8_step0_helloworld.cxx @@ -20,7 +20,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* See also: https://github.com/holke/t8code/wiki/Step-0---Hello-World +/* See also: https://github.com/DLR-AMR/t8code/wiki/Step-0---Hello-World * * In this example we initialize t8code and print a small welcome message. * This is the t8code equivalent of HelloWorld. */ diff --git a/tutorials/general/t8_step1_coarsemesh.cxx b/tutorials/general/t8_step1_coarsemesh.cxx index 8723922c89..c21a7b26c9 100644 --- a/tutorials/general/t8_step1_coarsemesh.cxx +++ b/tutorials/general/t8_step1_coarsemesh.cxx @@ -20,7 +20,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* See also: https://github.com/holke/t8code/wiki/Step-1---Creating-a-coarse-mesh +/* See also: https://github.com/DLR-AMR/t8code/wiki/Step-1---Creating-a-coarse-mesh * * In this example we build a coarse mesh with a cube geometry. * The cube is meshed with 6 coarse tetrahedra. diff --git a/tutorials/general/t8_step2_uniform_forest.cxx b/tutorials/general/t8_step2_uniform_forest.cxx index 40bc03e2ed..8f50c99f2f 100644 --- a/tutorials/general/t8_step2_uniform_forest.cxx +++ b/tutorials/general/t8_step2_uniform_forest.cxx @@ -20,7 +20,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* See also: https://github.com/holke/t8code/wiki/Step-2---Creating-a-uniform-forest +/* See also: https://github.com/DLR-AMR/t8code/wiki/Step-2---Creating-a-uniform-forest * * After we learned how to create a cmesh in step1, we will * now build our first partitioned forest, get its local and global diff --git a/tutorials/general/t8_step4_partition_balance_ghost.cxx b/tutorials/general/t8_step4_partition_balance_ghost.cxx index 2c75649751..c844ff59d8 100644 --- a/tutorials/general/t8_step4_partition_balance_ghost.cxx +++ b/tutorials/general/t8_step4_partition_balance_ghost.cxx @@ -20,7 +20,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* See also: https://github.com/holke/t8code/wiki/Step-4---Partition,-Balance,-Ghost +/* See also: https://github.com/DLR-AMR/t8code/wiki/Step-4---Partition,-Balance,-Ghost * * This is step4 of the t8code tutorials. * After generating a coarse mesh (step1), building a uniform forest diff --git a/tutorials/general/t8_step5_element_data.cxx b/tutorials/general/t8_step5_element_data.cxx index 25f3cda356..ad39d288de 100644 --- a/tutorials/general/t8_step5_element_data.cxx +++ b/tutorials/general/t8_step5_element_data.cxx @@ -20,7 +20,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* See also: https://github.com/holke/t8code/wiki/Step-5---Store-element-data +/* See also: https://github.com/DLR-AMR/t8code/wiki/Step-5---Store-element-data * * This is step5 of the t8code tutorials. * In the following we will store data in the individual elements of our forest. diff --git a/tutorials/general/t8_step5_element_data_c_interface.c b/tutorials/general/t8_step5_element_data_c_interface.c index a32596f4ce..b10d637696 100644 --- a/tutorials/general/t8_step5_element_data_c_interface.c +++ b/tutorials/general/t8_step5_element_data_c_interface.c @@ -20,7 +20,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* See also: https://github.com/holke/t8code/wiki/Step-5---Store-element-data +/* See also: https://github.com/DLR-AMR/t8code/wiki/Step-5---Store-element-data * * This is step5 of the t8code tutorials using the C interface of t8code. * In the following we will store data in the individual elements of our forest. diff --git a/tutorials/general/t8_tutorial_search.cxx b/tutorials/general/t8_tutorial_search.cxx index 8a056468e9..adf6164192 100644 --- a/tutorials/general/t8_tutorial_search.cxx +++ b/tutorials/general/t8_tutorial_search.cxx @@ -20,7 +20,7 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -/* See also: https://github.com/holke/t8code/wiki/Tutorial:-Search +/* See also: https://github.com/DLR-AMR/t8code/wiki/Tutorial:-Search * In this tutorial we discuss t8code's search algorithm. * search is a powerful tool to identify leaf elements that match a given condition * and execute a function on them.