Next Article in Journal
Decoding Diffuse Midline Gliomas: A Comprehensive Review of Pathogenesis, Diagnosis and Treatment
Previous Article in Journal
Outcomes of Patients with Advanced Hepatocellular Carcinoma Receiving Lenvatinib following Immunotherapy: A Real World Evidence Study
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Particle Swarm Optimisation Applied to the Direct Aperture Optimisation Problem in Radiation Therapy

by
Gonzalo Tello-Valenzuela
,
Mauricio Moyano
and
Guillermo Cabrera-Guerrero
*
Escuela de Ingeniería Informática, Pontificia Universidad Católica de Valparaíso, Av. Brasil 2241, Valparaíso 2362807, Chile
*
Author to whom correspondence should be addressed.
Cancers 2023, 15(19), 4868; https://doi.org/10.3390/cancers15194868
Submission received: 15 September 2023 / Revised: 29 September 2023 / Accepted: 2 October 2023 / Published: 6 October 2023
(This article belongs to the Topic Artificial Intelligence in Cancer, Biology and Oncology)

Abstract

:

Simple Summary

Intensity Modulated Radiation Therapy (IMRT) is a cancer treatment that targets cancer cells while protecting nearby healthy organs using a linear accelerator. Traditional IMRT planning involves a sequential process: optimizing beam intensities (Fluence Map Optimization) for a set of angles and then sequencing (Multi-Leaf Sequencing). Unfortunately, treatment plans obtained by the sequencing step are severely impaired. One approach that addresses the problem described is the Direct Aperture Optimisation (DAO) approach. The DAO problem aims at simultaneously determining deliverable aperture shapes and a set of radiation intensities. This approach considers physical and delivery time constraints, allowing clinically acceptable treatment plans to be generated. In this work, we adapt the Particle Swarm Optimisation to solve the DAO and introduce a reparation heuristic to enhance treatment plans. We tested our method on prostate cancer patients and found that it delivers radiation more efficiently than the traditional approach, reducing treatment time and improving outcomes.

Abstract

Intensity modulated radiation therapy (IMRT) is one of the most used techniques for cancer treatment. Using a linear accelerator, it delivers radiation directly at the cancerogenic cells in the tumour, reducing the impact of the radiation on the organs surrounding the tumour. The complexity of the IMRT problem forces researchers to subdivide it into three sub-problems that are addressed sequentially. Using this sequential approach, we first need to find a beam angle configuration that will be the set of irradiation points (beam angles) over which the tumour radiation is delivered. This first problem is called the Beam Angle Optimisation (BAO) problem. Then, we must optimise the radiation intensity delivered from each angle to the tumour. This second problem is called the Fluence Map Optimisation (FMO) problem. Finally, we need to generate a set of apertures for each beam angle, making the intensities computed in the previous step deliverable. This third problem is called the Sequencing problem. Solving these three sub-problems sequentially allows clinicians to obtain a treatment plan that can be delivered from a physical point of view. However, the obtained treatment plans generally have too many apertures, resulting in long delivery times. One strategy to avoid this problem is the Direct Aperture Optimisation (DAO) problem. In the DAO problem, the idea is to merge the FMO and the Sequencing problem. Hence, optimising the radiation’s intensities considers the physical constraints of the delivery process. The DAO problem is usually modelled as a Mixed-Integer optimisation problem and aims to determine the aperture shapes and their corresponding radiation intensities, considering the physical constraints imposed by the Multi-Leaf Collimator device. In solving the DAO problem, generating clinically acceptable treatments without additional sequencing steps to deliver to the patients is possible. In this work, we propose to solve the DAO problem using the well-known Particle Swarm Optimisation (PSO) algorithm. Our approach integrates the use of mathematical programming to optimise the intensities and utilizes PSO to optimise the aperture shapes. Additionally, we introduce a reparation heuristic to enhance aperture shapes with minimal impact on the treatment plan. We apply our proposed algorithm to prostate cancer cases and compare our results with those obtained in the sequential approach. Results show that the PSO obtains competitive results compared to the sequential approach, receiving less radiation time (beam on time) and using the available apertures with major efficiency.

1. Introduction

Cancer is a type of disease that causes abnormal growth of cells in the body, leading to the formation of carcinomas, which can eventually turn into malignant tumours. In 2020, the International Agency for Research on Cancer reported 19.3 million new cancer cases and nearly 10 million cancer-related deaths [1]. There are various methods for treating cancer, and the treatment choice largely depends on the specific type of cancer and its impact on the patient’s health.
Radiotherapy is a commonly used cancer treatment technique involving exposing patients to ionising radiation to target cancerous cells. There are various forms of radiotherapy, such as Volumetric Modulated Arc Therapy (VMAT), Stereotactic Body Radiation Therapy (SBRT), and Intensity Modulated Radiation Therapy (IMRT), among others. IMRT is one of the most widely used methods of radiation therapy, and is delivered using a linear accelerator (linac) machine [2] (Figure 1). IMRT aims to effectively deliver the prescribed radiation dose to the cancerous cells while minimising the exposure of healthy structures [3]. This is achieved by modulating the radiation passing through the linac using a multi-leaf collimator (MLC) device.
The IMRT technique enables the delivery of an optimal radiation dose to the tumour while minimising exposure to surrounding healthy organs [4]. However, finding a treatment plan that balances the desired dose to the tumour and minimal side effects on surrounding organs is highly complex. To address this, the IMRT planning process is typically split into three sequential sub-problems: beam angle optimisation (BAO), fluence map optimisation (FMO), and multi-leaf collimator sequencing [5]. First, the BAO problem aims to identify the best possible combination of beam angles from which the radiation should be delivered, also known as the beam angle configuration (BAC). Once a BAC has been selected, the optimal intensities for that BAC must be found (Fluence Map Optimisation problem, FMO). Finally, in the MLC sequencing problem, we compute a set of deliverable aperture shapes and their corresponding intensities.
This sequential approach ends with a treatment plan consisting of a large set of aperture shapes (with corresponding intensity values). Unfortunately, having too many apertures and larger intensity values per aperture means longer treatment time. The total delivery time of a treatment plan is calculated considering both the beam-on time and the decomposition times. The beam-on time (BoT) is the total time a patient is exposed to radiation. The decomposition time is the time the linear accelerator needs to move from one bean angle in a BAC to the next one and the time needed by the MLC to move from one aperture shape to the other [6,7].
As a general rule, prolonged treatment time is something we want to avoid, as it increases the attention time per patient and, thus, reduces the number of patients treated per day [8]. Further, longer treatment plans are more likely to suffer from inaccuracies produced, for instance, by patient’s movements.
One strategy commonly used to minimise the total delivery time of treatment plans generated using the sequential approach described before is to reduce the number of apertures. This can be made by “rounding” the intensity values computed during the FMO phase. Unfortunately, such strategies can severely impair the final treatment plan quality.
One alternative to the sequential approach that does not require any “rounding” process is the direct aperture optimisation problem (DAO). The main idea in DAO is to solve the FMO problem considering a limited number of deliverable aperture shapes and the physical constraints associated with the MLC sequencing.
To solve the DAO problem, we must find a set of aperture shapes and their associated intensity values [9]. Usually, aperture shapes are optimised using heuristic strategies [10,11] or looking for the best possible combination of aperture shapes from a pre-defined set of apertures [12]. To optimise intensity values, gradient-based optimisation methods are usually implemented. Compared to the sequential approach, the treatment plan obtained using DAO is not only deliverable, but also better regarding the objective function value [13].
In this paper, we implement a particle swarm optimisation algorithm (PSO) combined with a mathematical programming technique to solve the DAO problem. PSO is recognised for effectively solving large-scale nonlinear optimisation problems through a good balance between exploitation (local search) and exploration (global search) [14,15]. While the PSO algorithm finds the best aperture shapes at each beam angle for a given BAC, the mathematical programming algorithm optimises each aperture’s intensity value. Also, we present a reparation heuristic for those aperture shapes that have a negligible effect on the treatment plan. To analyse our algorithm results, we use a set of clinical cases of prostate cancer and compare the treatment plans obtained by our algorithm to those obtained by the traditional sequential approach. The results show that our algorithm can find deliverable treatment plans using fewer apertures and significantly reduce the beam-on time compared to the traditional sequential approach. Compared to deliverable treatment plans with a similar number of apertures, our algorithm outperforms them regarding objective function values.
The remainder of this paper is organised as follows: Section 2 introduces the general concepts of IMRT and DAO and the mathematical models we will consider in this study. In Section 3, the algorithms we implement in this paper are presented. Section 4 presents the results obtained by our algorithm applied to a prostate case. A discussion of these results is also included in this section. Finally, in Section 5, we draw the main conclusions of our work and outline future work.

2. IMRT and the DAO Problem

In this section, we first discuss the main features of the IMRT problem and how to model it. Then, we introduce the DAO problem and present a brief literature review, focusing on the algorithms that have been previously proposed to solve the DAO problem.

2.1. Intensity Modulated Radiation Therapy

To mathematically model the IMRT problem, we first need to discretise each beam angle into beamlets, and each region (tissues and tumour) into a set of small sub-volumes called voxels [16]. See Figure 2 for a graphical representation of these concepts.
Thus, the IMRT problem can be modelled using the representation depicted in Figure 2 [12,17,18,19,20,21]. First, we model the dose distribution deposited in the voxels that compose a region. As mentioned above, beam angles are divided into a set of n beamlets, being n, the total number of beamlets summed over all the possible beam angles. Let A be a BAC and x R 0 n be an intensity vector or fluence map solution for A . Each vector component x b represents the length of time the patient is exposed to the radiation of the b-th beamlet. The radiation dose deposited into each voxel v of region r by fluence map x is computed by the expression [16,20]
d v r ( x ) = b = 1 n ( D v 1 i r x b ) v = 1 , 2 , , m r ,
where m r is the total number of voxels in the region r, r R = { O 1 , , O Q , T } is an element of the index set of regions, with the tumour indexed by r = T and the organs at risk and normal tissue indexed by r = O q with q = 1 , , Q . D r R m r × n is the dose deposition matrix related to region r, where D v b r 0 defines the rate at which the radiation dose along beamlet b is deposited into voxel v of region r (As shown Figure 3). The set X ( A ) R n is the set of all feasible fluence maps when the BAC A is considered. Note that searching for an optimal fluence map x over the X ( A ) space implies solving the FMO problem.
Based on the dose distribution in Equation (1), physical and biological models have been proposed in the literature (see Ehrgott et al. [16] for a survey). This study uses the convex nonlinear penalty function in [22,23]. In this model, each voxel is penalised according to the squared difference between the actual and the prescribed doses. This formulation yields a quadratic programming problem with only linear non-negativity constraints on the fluence values [22]. This model is as follows:
min x z ( x ) = r R 1 m r i = 1 m r λ ̲ r Y r d v r ( x ) + 2 + λ ¯ r d v r ( x ) Y r + 2
where parameter m r is, again, the number of voxels of the region r and Y r is the desired dose for the voxels of the region r. The function ( · ) + is the maximum between 0 and ( · ) , d v r ( x ) gives the dose delivered by fluence map x to voxel v of the region r (see Equation (1)), and λ ̲ r and λ ¯ r are the penalty weights parameter of under-dose and overdose related to region r, respectively. Since the Equation (2) is convex, the optimal fluence maps can be obtained using mathematical programming techniques.

2.2. Direct Aperture Optimisation

The Direct Aperture Optimisation [10] merges the FMO and MLC problems, optimising the fluence map considering the constraints imposed by the MLC device. This means that the decision variables we focus on are not the beamlet intensities (as we did in the FMO problem), but the beamlet apertures and their corresponding aperture intensities. One consequence of this change is that the model becomes a mixed integer nonlinear problem as the beamlet apertures are binary variables (open/closed). Having binary variables makes the problem too hard to be solved by mathematical programming techniques, as we used to do with the FMO problem.
Let us consider a BAC A = { A 1 , , A U } , where U N > 0 represents the number of beams that are part of the BAC A . Consider that we represent a DAO solution as the set H = { ( P 1 , I 1 ) , , ( P N , I N ) } , where the ( P c , I c ) tuples correspond to a set of Θ c aperture and intensity values for some beam angle c. We define each aperture shape S i c P c as a matrix of binary variables. Figure 4 gives an example of a tuple ( P c , I c ) for a beam angle c.
As we can see, the value of an element in the matrix is 1 if the radiation passes through the associated beamlet and 0 otherwise. The elements with value 1 are not considered, as the associated beamlets do not hit any voxel from the tumour. Also note that because of MLC physical constraints, the matrix S i c is a consecutive 1’s matrix ( C 1 ), that is, for each row, 1 values must be consecutive, with no 0 value in between them.
To evaluate z ( x ) , it is necessary to obtain the fluence map x, used in Equation (1), from the DAO solution. To this end, we first need to compute an aggregated matrix for each tuple in H. This aggregated matrix can be obtained through a positive linear combination of the aperture shapes S i c and their corresponding intensities I i c for angle A :
A c = i = 1 Θ c S i c · I i c
Then, we need to convert the aggregated matrix A c obtained in Equation (3) to a fluence map x vector. We perform this by mapping the position of each beamlet in the aggregated matrix of beam angle A to its corresponding position b in the fluence map solution x of beam angle A . Figure 5 shows how to do this.

Direct Aperture Optimisation Related Work

The DAO problem was first introduced by Shepard et al. [10]. In their paper, the authors identify as input of the problem the beam angles, the beam energies, and the number of apertures per beam angle. At the same time, the decision variables are the aperture shapes and their intensities. Currently, several different techniques have been used to solve the DAO problem. Some of these techniques are classified as stochastic search methods. These methods apply small changes in the leaf position of the apertures. When a change in the leaf position improves the objective function, it is accepted. It is important to remark that the changes in this method are stochastic [3,10,11,12,21,24,25,26,27].
Other methods for solving the DAO problem are based on gradient leaf refinement. In these methods, the leaf position is used as the optimisation variable. The relationship between the objective function and the leaf position is established, and the first derivative is given. Such algorithms have been applied to various commercial therapeutic systems, including the direct machine parameter optimisation model used in Pinnacle and RayStation systems [28,29]. Column generation methods have also been proposed in the literature [9,30,31,32,33]. In these methods, the initial apertures are not set at the beginning of an iteration; instead, deliverable apertures are individually added to the treatment plan. The iteration process involves two steps. First, the price problem is solved to generate the deliverable aperture that can improve the objective function, which is added to the treatment plan. Then, the new set of aperture weights is optimised in the master problem.
Unfortunately, the methods above also suffer from some issues. For instance, column generation approaches usually converge very fast; however, they do not allow for a hard limit on the number of apertures, which may translate to unreasonably long total treatment times and negligibly small apertures [34]. A relevant issue in stochastic search and gradient-based leaf refinement techniques is generating the initial solution. The quality of the initial solution influences the quality of the given final solution, as seen in [12,24].
All in all, solving the DAO problem using a limited number of apertures and obtaining good objective quality function values is an open problem that is worth to be studied.

3. Solution Method

This section introduces our hybrid PSO algorithm to solve the DAO problem. The main goal of our algorithm is to obtain a high-quality treatment plan for IMRT that consists of a set of deliverable set of aperture shapes and their corresponding intensity values.
In Section 3.1, we explain the original PSO algorithm proposed in [35] and how we adapt it to the DAO problem. Then, in Section 3.2, we define a reparation heuristic that uses a mathematical programming algorithm to improve the solution found by our PSO algorithm.

3.1. Particle Swarm Optimisation

The PSO is a nature-inspired population-based metaheuristic algorithm that imitates the social behaviour of birds in nature. This swarm consists of particles that search the objective space intending to find different high-quality solutions. Each particle is, in turn, composed of two fitness-related elements. The first element is the current fitness value of the i-th particle, and the second element is the fitness value of the best position the i-th particle has ever found during the algorithm execution, p b e s t i . Finally, the algorithm also keeps track of the best fitness value found so far, g b e s t .
The PSO starts with an initial population of particles whose positions have been randomly assigned. The i-th particle’s position at iteration t is represented by x i t . The direction of particles in each iteration is determined by a velocity variable denoted by v i t that obtains its value from Equation (4).
v i t + 1 = c f ( w v i t + c 1 r 1 ( p b e s t i x i t ) + c 2 r 2 ( g b e s t x i t ) ) ,
where t is the current iteration, p b e s t i is the best position the i-th particle has achieved, and g b e s t is the best position any particle in the swarm has achieved. Parameter c f is the constriction factor used to adjust the velocity of each particle and obtain a balance between exploration and exploitation. The parameter w is the algorithm’s inertia and controls the last velocity contribution. Parameter c 1 and c 2 are learning factors for managing the impact of p b e s t i and g b e s t . Parameters r 1 and r 2 are random numbers between 0 and 1. The new position of each particle is updated by adding the current velocity to the function of the position of the particle, as shown in Equation (5).
x i t + 1 = x i t + v i t + 1
In the proposed algorithm, we represented the particles as shown in Figure 6. As we can see, the particle is composed of three attributes, namely the current fitness value (a real-valued attribute), its best singular position (a treatment plan), and its current position (a treatment plan). Naturally, the current fitness value results from evaluating the current particle’s position in the objective function considered by the algorithm.
As in any other heuristic algorithm, solutions generated by the PSO algorithms are not (necessarily) optimal. One drawback of the PSO implemented here is that there is no relation between the intensity values associated with an aperture and the aperture itself. Unfortunately, as mentioned before, the aperture shape optimisation problem is an NP-hard problem that mathematical programming solvers cannot solve in a reasonable time. Unlike this, the apertures’ intensity optimisation problem (also known as aperture weight optimisation [9] or segmentation weight optimisation) is a convex continuous problem that can quickly be solved for solvers such as Gurobi (see, for instance, [24,25,26]). Then, we propose to implement a hybrid PSO with a mathematical programming algorithm to solve the DAO problem. We use the PSO algorithm to find a set of aperture shapes and their corresponding intensities, which the linear solver will then optimise.
To better understand the algorithm’s behaviour, we can see in Figure 7 how an aperture shape and the associated intensities change in each step. Considering the representation of the treatment plan mentioned in Section 2.2, we can represent the aperture shape and the intensities obtained by the PSO algorithm like a tuple ( P c ,   I c ) . The intensities I c are optimised by the solver at the end of each iteration of the PSO algorithm. As a result, we obtain a new tuple ( P c ,   I c ) where, as mentioned before, some intensities in I c are set to zero by the solver. To improve the aperture shapes that resulted in (near) zero intensity value after the solver optimisation, we use a reparation heuristic. This heuristic only modifies P c , leading to a new tuple ( P c ,   I c ) . Finally, the reparation heuristic passes on the Solver the tuple ( P c ,   I c ) so we can obtain the optimal intensity values for the new set of apertures P c , generating the tuple ( P c ,   I c ) . Finally, the treatment plan defined by the tuple ( P c ,   I c ) is passed onto the PSO algorithm for the next iteration. This process is repeated until the PSO algorithm meets some termination criterion (e.g., it reaches a predetermined number of iterations).

3.2. Reparation Heuristic

As mentioned in the previous paragraph, as a result of the solver usage, we obtain the optimal intensities for each aperture at each beam angle. Since the optimisation solver is conditioned to the aperture shapes obtained at each iteration by the PSO algorithm, it is not unusual that some of the intensities end up in the optimisation process with values close to zero.
In practice, apertures with associated intensities near to zero value are equivalent to having no aperture at all, i.e., an insignificant (or null) impact on the treatment plan. Further, improving the shapes of those apertures with intensity values close to zero is complex. To address this issue, we propose a reparation heuristic that allows us to avoid (as much as possible) those apertures with a negligible effect on the treatment plan.
Figure 8 shows a numerical example of the intensities optimisation process. On top of the image, we can see four aperture shapes with their associated intensities. We can see that all the intensities are modified on the bottom part of the same image.
The main idea of the reparation heuristic proposed here is to replace those apertures with intensity values closer to zero with apertures that (hopefully) can help after running the solver. Particularly, we aim to irradiate those parts of the aperture shape that are not irradiated from any other aperture of the beam angle.
To this end, we generate a new aperture that results from overlapping the apertures with an intensity value greater than 1. We call this new aperture the “overlapped aperture”, and the ones with intensity values greater than one “the original apertures”. Figure 9 shows an example of the apertures overlapping process. Fields with a value of 1 correspond to beamlets radiation passes through. Fields with zero value correspond to the beamlets closed in the original apertures. Finally, −1 corresponds to the inactive beamlets (those that do not hit the tumour).
As shown in Figure 9, the overlapped aperture corresponds to the original apertures’ aggregation, i.e., the overlapped aperture keeps open beamlets that are open in at least one original aperture and sets closed those beamlets that are closed in all the original apertures.
As a result of this aggregation process, we have a matrix showing all the beamlets currently open in at least one original aperture. As mentioned above, we want to diversify our search, and thus, we want to irradiate from those fields that are not currently in use.
To this end, the reparation heuristic generates the complementary matrix of the overlapped matrix, as shown in Figure 10.
It is important to keep in mind some considerations about the application of our reparation heuristic. First, in some cases, the shape of the complementary matrix does not satisfy the MLC physical constraints and can not directly replace the original aperture. In that case, we can select part of the aperture that is actually deliverable and remove those parts that do not satisfy MLC physical constraints. As shown in Figure 11, we divide the complementary matrix into two different apertures that satisfy the MLC physical constraints.
Second, suppose the number of original apertures with an intensity value close to zero is more than one. In that case, we must divide the complimentary matrix to generate as many new apertures as needed. Note that this situation can help us to solve our first consideration (undeliverable aperture shapes), as we can divide the complementary matrix in such a way that all (or most of) the open beamlets in the complementary matrix can be added to the new apertures (see, for instance, Figure 11).
Finally, the reparation heuristic replaces those apertures with (near) zero intensity values by the aperture shapes obtained in the previous step. We need to note that, in some cases, one or more apertures still with (near) zero intensity values as the number of deliverable aperture shapes produced by the reparation heuristic is less than the number of apertures with (near) zero intensity values. Once we obtained the repaired aperture shapes, we optimised the intensities values, as shown in Figure 12.

4. Computational Experiments

This Section introduces the experiments performed by our algorithm and analyses the obtained results. The Section is divided into three subsections. In Section 4.1, we introduce the set of instances considered in our study and the parameters used by the PSO. In Section 4.2, we obtain the best parameters for the PSO algorithm using the framework Irace [36]. Finally, in Section 4.3, we compare our PSO to two algorithms used in the literature. Comparison is made regarding the obtained objective function values, the required number of aperture shapes, and their beam-on time.

4.1. Experimental Setup

In this work, we perform a set of initial experiments on the prostate case instance from CERR package [37] and also examine a prostate case acquired from Clinica Alemana de Santiago, Chile. This particular patient is denoted as TRT001 [19]. We use this prostate case to evaluate the performance of the PSO algorithm introduced in Section 3.1. For the CERR and TRT001 cases, we consider three organs: the prostate, where the tumour is located, the bladder, and the rectum (see Figure 13). We label the rectum and the bladder as organs at risk (OARs) and the prostate as planning target volume (PTV).
The number of voxels per region in the CERR case is 15,172 for the prostate, 22,936 for the bladder and 18,128 for the rectum. We consider 72 beam angles, all of which are on the same plane. Similarly, in the TRT001 case, the prostate comprises 13,081 voxels, the bladder holds 19,762 voxels, and the rectum encompasses 8500 voxels.
Like other works in the problem we consider a set of 14 equidistant BACs [12,17,18,21,24,25]. Each BAC consists of five beam angles for the CERR and TRT01 instances, as shown in Table 1.
Table 2 details the prescribed doses, Y r , considered per each organ at all the instances and the weights for both under-dose λ ̲ r and overdose λ ¯ r .

4.2. Irace Parameter

To optimise the parameter used in the PSO algorithm implemented, we tried the package Irace [36]. This package is an extension of the iterative F-race algorithm (I/F race) [38,39]. The principal use of this method is for the automatic configuration of optimisation algorithms. This is performed by finding the most appropriate configuration of parameters from a set of instances executed in the algorithm. This package has also been used for the parameters optimisation of the algorithm proposed by Caceres et al. [21]. That said, using IRace aims to find suitable parameters for our PSO implementation. The parameters to optimise within the IRace package are shown in Table 3.
Table 4 shows the results provided by the IRace package:
The number of iterations used by our algorithm is given by Equation (6), where we set the evaluation to 40,000 (number obtained testing the algorithm) and an N p o p of 518 (given in Table 4) doing a total of 95 iterations, like limits for the algorithm.
I t e r a t i o n s = e v a l u a t i o n N p o p .

4.3. Experiments on Test Instances

In our experiments, we measure the performance of the proposed PSO using the best-found parameter configuration, described in Section 4.2. Note that we run our algorithm 30 times per BAC, as 30 is a widely accepted value for statistical analysis [40].
Table 5, Table 6, Table 7 and Table 8 report the results obtained by both the sequential and the PSO approaches when applied to the CERR and TRT001 cases. As mentioned in the previous section, the IMRT sequential approach obtains a fluence map, optimising the dose-volume model of the FMO problem. Next, the MLC sequencing problem is solved for the resulting fluence maps by using a well-known algorithm from [7], which finds a set of apertures that minimise the BoT. In Table 5 and Table 6, column z ( x ) corresponds to the cost of the optimal fluence map using the function in Equation (2). Columns z ( r ( x ) ) , z ( r 2 ( x ) ) and z ( r 4 ( x ) ) correspond to the cost of the fluence maps with intensities rounded to the nearest integer, the nearest multiple of 2, and the nearest multiple of 4, respectively. For each rounding, we also report the number of apertures generated by the MLC sequencing algorithm (#ap) and the BoT.
Table 7 and Table 8 report the results obtained by our PSO algorithm. Due to its stochastic nature, the strategy was run 30 times on each instance. We report the mean over the 14 instances of each set, the best value for each set, the mean number of apertures with intensity different to zero, and the mean BoT. We need to point out that apertures for which the intensity is set to zero by the mathematical programming solver in the last iteration are considered closed.
When comparing the objective function value reported by the PSO and the optimal (but not deliverable) fluence map, the difference is 29.41% and 30.49% for CERR and TRT001, respectively, with the PSO algorithm being the one with the higher objective value. This difference in the objective function value is reduced when the rounding process is applied to the optimal fluence map. For instance, when the optimal fluence map is rounded to the nearest multiple of 1 ( z ( r ( x * ) ) ) and 2 ( z ( r 2 ( x * ) ) ) , the difference is 25.39% and 13.71% for the CERR case and 26.98% and 17.98% for the TRT001 case, respectively. Further, rounding to the nearest multiple of 4 ( z ( r 4 ( x * ) ) ) leads to an impairment in the quality of the rounded treatment plan that makes solutions provided by our PSO algorithm become better in all cases. Further, even though our algorithm is not better than the r 1 ( x * ) and r 2 ( x * ) treatment plans (with respect to the objective function value), the number of aperture shapes our solutions need is always smaller than the apertures needed by the solutions obtained by the sequential approach. Also, it is interesting to note that even though our approach is not directly focused on reducing the beam on time value, our approach reports better values in all cases compared to the sequential approach. This is mainly because of the fact that we use far fewer aperture shapes in our final treatment plans.
In addition, we report the dose-volume histogram (DVH) for the CERR and TRT001 in Figure 14 and Figure 15, respectively. DVH curves specify the received dose level by different volumes of structures. In the case of CERR, we can see that our algorithm obtains treatments that do not overdose the voxels in the PTV. Unlike this, the solutions obtained by the optimal fluence map overdose above 30% of PTV voxels. When observing the OARs, our algorithm overdoses more voxels than the optimal fluence map. However, the max overdose received for the voxels is less than the received by the optimal fluence map. In the case of TRT001, the PSO and the optimal fluence map have a similar curve, where both do not overdose the PTV. When observing the OARs, our algorithm overdoses more voxels than the optimal fluence map. It is necessary to remember that the optima fluence map is not a deliverable treatment and needs to pass for the MLC sequencing problem.

5. Conclusions

This paper introduces a hybrid heuristic based on PSO and mathematical programming to solve the DAO problem in radiation therapy for cancer treatment. The proposed PSO heuristic finds a set of deliverable aperture shapes and their corresponding intensities for each beam angle within a clinically acceptable time. Further, even though our heuristic algorithm was allowed to use only five aperture shapes per beam angle, they could find very competitive treatment plans.
Comparing our algorithm with the traditional sequential approach shows that the proposed algorithm can obtain competitive results regarding the objective function value. However, the difference with the optimal solution generated by the FMO is still significant. On the opposite, when evaluating the number of apertures generated by our algorithm, we can observe a substantial reduction compared to the traditional approach. This is very important as fewer aperture shapes mean, in general, shorter treatment times, which is something desirable from a clinical point of view.
In future work, we can see different research lines to improve the obtained results. First, we believe that improving the reparation heuristic to activate apertures that have intensities close to zero would allow us to find better-quality treatment plans. This is because the more apertures are used, the better the treatment plan quality. Note that, as mentioned before in the paper, this would be at the cost of longer treatment times. In addition, we seek to extend our single-objective PSO algorithm to a multi-objective one. This is because IMRT is an inherently multi-objective problem, since there is a compromise between tumour irradiation and avoiding damage to the organs at risk. Extending our approach to a multi-objective one is a challenging task from both computational and clinical points of view. However, we are sure that addressing the problem as a multi-objective one will help us better understand the underlying trade-offs between tumour control and OARs sparing.

Author Contributions

Conceptualization, G.T.-V., M.M. and G.C.-G.; methodology, M.M. and G.C.-G.; software, G.T.-V., M.M. and G.C.-G.; validation, M.M.; formal analysis, M.M.; investigation, G.T.-V. and M.M.; resources, G.C.-G.; data curation, M.M. and G.C.-G.; writing—original draft preparation, G.T.-V., M.M. and G.C.-G.; writing—review and editing, G.T.-V., M.M. and G.C.-G. visualization, G.T.-V. and M.M.; supervision, G.T.-V., M.M. and G.C.-G. All authors have read and agreed to the published version of the manuscript.

Funding

This research was partly funded by the “FONDECYT Regular” project, number 1211129.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The data can be shared upon request.

Acknowledgments

The authors gratefully thank Centro Oncologico Hondureño for giving access to pictures from its linear accelerator.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
ASOAperture Segmentation Optimisation
AWOAperture Weight Optimisation
BACBeam angle configuration
BAOBeam angle optimisation
BoTBeam-on-Time
CERRComputational Environment for Radiological Research
DAODirect Aperture Optimisation
DVHDose-Volume histogram
FMOFluence map optimisation
IMRTIntensity modulated radiotherapy treatment
MLCMulti-leaf Collimator
NpopPopulation of solution
OAROrgan at risk
PTVPlanning target volume
PSOParticle Swarm Optimisation
SBRTStereotactic Body Radiation Therapy
VMATVolumetric Modulated Arc Therapy

References

  1. Sung, H.; Ferlay, J.; Siegel, R.L.; Laversanne, M.; Soerjomataram, I.; Jemal, A.; Bray, F. Global Cancer Statistics 2020: GLOBOCAN Estimates of Incidence and Mortality Worldwide for 36 Cancers in 185 Countries. CA Cancer J. Clin. 2021, 71, 209–249. [Google Scholar] [CrossRef]
  2. Cho, B. Intensity-modulated radiation therapy: A review with a physics perspective. Radiat. Oncol. J. 2018, 36, 1. [Google Scholar] [CrossRef] [PubMed]
  3. Fallahi, A.; Mahnam, M.; Niaki, S. Two Metaheuristic Algorithms for Direct Aperture Optimization in Intensity Modulated Radiation Therapy: Real-World Case Study for Liver Cancer; IEEE: Piscataway, NJ, USA, 2021. [Google Scholar]
  4. Hong, T.; Ritter, M.; Tome, W.; Harari, P. Intensity-modulated radiation therapy: Emerging cancer treatment technology. Br. J. Cancer 2005, 92, 1819–1824. [Google Scholar] [CrossRef] [PubMed]
  5. Cao, D.; Afghan, M.K.N.; Ye, J.; Chen, F.; Shepard, D.M. A generalized inverse planning tool for volumetric-modulated arc therapy. Phys. Med. Biol. 2009, 54, 6725–6738. [Google Scholar] [CrossRef]
  6. Ahuja, R.K.; Hamacher, H.W. A network flow algorithm to minimize beam-on time for unconstrained multileaf collimator problems in cancer radiation therapy. Networks 2005, 45, 36–41. [Google Scholar] [CrossRef]
  7. Baatar, D.; Hamacher, H.; Ehrgott, M.; Woeginger, G. Decomposition of integer matrices and multileaf collimator sequencing. Dis. Appl. Math. 2005, 152, 6–34. [Google Scholar] [CrossRef]
  8. Dzierma, Y.; Nuesken, F.G.; Fleckenstein, J.; Melchior, P.; Licht, N.P.; Rübe, C. Comparative Planning of Flattening-Filter-Free and Flat Beam IMRT for Hypopharynx Cancer as a Function of Beam and Segment Number. PLoS ONE 2014, 9, e94371. [Google Scholar] [CrossRef]
  9. Romeijn, H.E.; Ahuja, R.K.; Dempsey, J.F.; Kumar, A. A Column Generation Approach to Radiation Therapy Treatment Planning Using Aperture Modulation. SIAM J. Optim. 2005, 15, 838–862. [Google Scholar] [CrossRef]
  10. Shepard, D.M.; Earl, M.A.; Li, X.; Naqvi, S.; Yu, C.X. Direct aperture optimization: A turnkey solution for step-and-shoot IMRT. Med. Phys. 2002, 29, 1007–1018. [Google Scholar] [CrossRef]
  11. Cotrutz, C.; Xing, L. Segment-based dose optimization using a genetic algorithm. Phys. Med. Biol. 2003, 48, 2987–2998. [Google Scholar] [CrossRef]
  12. Pérez Cáceres, L.; Araya, I.; Soto, D.; Cabrera-Guerrero, G. Stochastic Local Search Algorithms for the Direct Aperture Optimisation Problem in IMRT. In Hybrid Metaheuristics; Springer International Publishing: Berlin, Germany, 2019; pp. 108–123. [Google Scholar]
  13. Ludlum, E.; Xia, P. Comparison of IMRT planning with two-step and one-step optimization: A way to simplify IMRT. Phys. Med. Biol. 2009, 53, 807–821. [Google Scholar] [CrossRef] [PubMed]
  14. del Valle, Y.; Venayagamoorthy, G.K.; Mohagheghi, S.; Hernandez, J.C.; Harley, R.G. Particle Swarm Optimization: Basic Concepts, Variants and Applications in Power Systems. IEEE Trans. Evol. Comput. 2008, 12, 171–195. [Google Scholar] [CrossRef]
  15. Binkley, K.; Hagiwara, M. Balancing Exploitation and Exploration in Particle Swarm Optimization: Velocity-based Reinitialization. Trans. Jpn. Soc. Artif. Intell. 2008, 23, 27–35. [Google Scholar] [CrossRef]
  16. Ehrgott, M.; Güler, Ç.; Hamacher, H.W.; Shao, L. Mathematical optimization in intensity modulated radiation therapy. Ann. Oper. Res. 2010, 175, 309–365. [Google Scholar] [CrossRef]
  17. Cabrera-Guerrero, G.; Rodríguez, N.; Lagos, C.; Cabrera, E.; Johnson, F. Local Search Algorithms for the Beam Angles Selection Problem in Radiotherapy. Math. Probl. Eng. 2018, 2018, 4978703. [Google Scholar] [CrossRef]
  18. Cabrera-Guerrero, G.; Lagos, C.; Cabrera, E.; Johnson, F.; Rubio, J.M.; Paredes, F. Comparing local search algorithms for the beam angles selection in radiotherapy. IEEE Access 2018, 6, 23701–23710. [Google Scholar] [CrossRef]
  19. Cabrera-Guerrero, G.; Mason, A.J.; Raith, A.; Ehrgott, M. Pareto local search algorithms for the multi-objective beam angle optimisation problem. J. Heuristics 2018, 24, 205–238. [Google Scholar] [CrossRef]
  20. Cabrera, G.; Ehrgott, M.; Mason, A.J.; Raith, A. A matheuristic approach to solve the multiobjective beam angle optimization problem in intensity-modulated radiation therapy. Int. Trans. Oper. Res. 2018, 25, 243–268. [Google Scholar] [CrossRef]
  21. Cáceres, L.P.; Araya, I.; Cabrera-Guerrero, G. Stochastic local search for the Direct Aperture Optimisation Problem. Exp. Syst. Appl. 2021, 182, 115206. [Google Scholar] [CrossRef]
  22. Romeijn, H.E.; Ahuja, R.K.; Dempsey, J.F.; Kumar, A.; Li, J.G. A novel linear programming approach to fluence map optimization for intensity modulated radiation therapy treatment planning. Phys. Med. Biol. 2003, 48, 3521–3542. [Google Scholar] [CrossRef]
  23. Aleman, D.M.; Kumar, A.; Ahuja, R.K.; Romeijn, H.E.; Dempsey, J.F. Neighborhood search approaches to beam orientation optimization in intensity modulated radiation therapy treatment planning. J. Glob. Optim. 2008, 42, 587–607. [Google Scholar] [CrossRef]
  24. Moyano, M.; Cabrera-Guerrero, G. Local Search for the Direct Aperture Optimisation in IMRT. In Proceedings of the 2020 39th International Conference of the Chilean Computer Science Society (SCCC), Coquimbo, Chile, 16–20 November 2020; pp. 1–6. [Google Scholar]
  25. Moyano, M.; Cabrera-Guerrero, G.; Tello-Valenzuela, G.; Lagos, C. An Hybrid Local Search for the Direct Aperture Optimisation Problem. IEEE Trans. Emerg. Top. Comput. Intell. 2023, 1–15. [Google Scholar] [CrossRef]
  26. Cao, R.; Pei, X.; Zheng, H.; Hu, L.; Wu, Y. Direct aperture optimization based on genetic algorithm and conjugate gradient in intensity modulated radiation therapy. Chin. Med. J. 2014, 127, 4152–4153. [Google Scholar] [PubMed]
  27. Li, Y.; Yao, J.; Yao, D. Genetic algorithm based deliverable segments optimization for static intensity-modulated radiotherapy. Phys. Med. Biol. 2003, 48, 3353–3374. [Google Scholar] [CrossRef] [PubMed]
  28. Hardemark, B.; Liander, A.; Rehbinder, H.; Löf, J. Direct Machine Parameter Optimization with RayMachine in Pinnacle; RaySearch White Paper; RaySearch Laboratories: Stockholm, Sweden, 2003. [Google Scholar]
  29. Worthy, D.; Wu, Q. Parameter optimization in HN-IMRT for Elekta linacs. J. Appl. Clin. Med. Phys. 2009, 10, 43–61. [Google Scholar] [CrossRef]
  30. Preciado-Walters, F.; Langer, M.P.; Rardin, R.L.; Thai, V. Column generation for IMRT cancer therapy optimization with implementable segments. Ann. Oper. Res. 2006, 148, 65–79. [Google Scholar] [CrossRef]
  31. Carlsson, F. Combining segment generation with direct step-and-shoot optimization in intensity-modulated radiation therapy. Med. Phys. 2008, 35, 3828–3838. [Google Scholar] [CrossRef]
  32. Zhang, L.; Gui, Z.; Yang, J.; Zhang, P. A Column Generation Approach Based on Region Growth. IEEE Access 2019, 7, 31123–31139. [Google Scholar] [CrossRef]
  33. Salari, E.; Unkelbach, J. A column-generation-based method for multi-criteria direct aperture optimization. Phys. Med. Biol. 2013, 58, 621–639. [Google Scholar] [CrossRef]
  34. Ripsman, D.; Purdie, T.; Chan, T.; Mahmoudzadeh, H. Robust Direct Aperture Optimization for Radiation Therapy Treatment Planning. INFORMS J. Comput. 2022, 34, 2017–2038. [Google Scholar] [CrossRef]
  35. Kennedy, J.; Eberhart, R. Particle swarm optimization. In Proceedings of the ICNN’95—International Conference on Neural Networks, Perth, WA, Australia, 27 November–1 December 1995; Volume 4, pp. 1942–1948. [Google Scholar]
  36. López-Ibáñez, M.; Dubois-Lacoste, J.; Pérez Cáceres, L.; Birattari, M.; Stützle, T. The irace package: Iterated racing for automatic algorithm configuration. Oper. Res. Perspect. 2016, 3, 43–58. [Google Scholar] [CrossRef]
  37. Deasy, J.O.; Blanco, A.I.; Clark, V.H. CERR: A computational environment for radiotherapy research. Med. Phys. 2003, 30, 979–985. [Google Scholar] [CrossRef] [PubMed]
  38. Balaprakash, P.; Birattari, M.; Stützle, T. Improvement Strategies for the F-Race Algorithm: Sampling Design and Iterative Refinement. In Hybrid Metaheuristics; Bartz-Beielstein, T., Blesa Aguilera, M.J., Blum, C., Naujoks, B., Roli, A., Rudolph, G., Sampels, M., Eds.; Springer: Berlin/Heidelberg, Germany, 2007; pp. 108–122. [Google Scholar]
  39. Birattari, M.; Yuan, Z.; Balaprakash, P.; Stützle, T. F-Race and Iterated F-Race: An Overview. In Experimental Methods for the Analysis of Optimization Algorithms; Bartz-Beielstein, T., Chiarandini, M., Paquete, L., Preuss, M., Eds.; Springer: Berlin/Heidelberg, Germany, 2010; pp. 311–336. [Google Scholar]
  40. Hays, W.L.; Winkler, R.L. Statistics: Probability, Inference, and Decision; Technical Report; Houghton Mifflin Harcourt School: Boston, MA, USA, 1970. [Google Scholar]
Figure 1. Linear accelerator from the Centro Oncologico Hondureño in Honduras.
Figure 1. Linear accelerator from the Centro Oncologico Hondureño in Honduras.
Cancers 15 04868 g001
Figure 2. Representation of beam angles and organs discretised into beamlets and voxels, respectively (Cabrera-Guerrero et al. [17]).
Figure 2. Representation of beam angles and organs discretised into beamlets and voxels, respectively (Cabrera-Guerrero et al. [17]).
Cancers 15 04868 g002
Figure 3. Radiation is delivered from a subset of beamlets, and it irradiates voxels at both tumour and organs at risk (Cabrera-Guerrero et al. [17]).
Figure 3. Radiation is delivered from a subset of beamlets, and it irradiates voxels at both tumour and organs at risk (Cabrera-Guerrero et al. [17]).
Cancers 15 04868 g003
Figure 4. Set of aperture shapes and intensity values associated with a beam angle.
Figure 4. Set of aperture shapes and intensity values associated with a beam angle.
Cancers 15 04868 g004
Figure 5. Generation of a fluence map from an angle’s apertures and associated intensities.
Figure 5. Generation of a fluence map from an angle’s apertures and associated intensities.
Cancers 15 04868 g005
Figure 6. DAO solution on particle representation.
Figure 6. DAO solution on particle representation.
Cancers 15 04868 g006
Figure 7. Interaction between PSO algorithm, linear solver and reparation heuristic.
Figure 7. Interaction between PSO algorithm, linear solver and reparation heuristic.
Cancers 15 04868 g007
Figure 8. Representation of the change in the intensities of a set of apertures using the solver.
Figure 8. Representation of the change in the intensities of a set of apertures using the solver.
Cancers 15 04868 g008
Figure 9. Overlapping matrix from the apertures with intensities over one.
Figure 9. Overlapping matrix from the apertures with intensities over one.
Cancers 15 04868 g009
Figure 10. Complementary matrix generated from the overlapping matrix.
Figure 10. Complementary matrix generated from the overlapping matrix.
Cancers 15 04868 g010
Figure 11. Dividing the complementary matrix so we can obtain deliverable aperture shapes.
Figure 11. Dividing the complementary matrix so we can obtain deliverable aperture shapes.
Cancers 15 04868 g011
Figure 12. Representation of the apertures obtained after the reparation process.
Figure 12. Representation of the apertures obtained after the reparation process.
Cancers 15 04868 g012
Figure 13. Prostate case from CERR. Two OARs (bladder and rectum) are considered.
Figure 13. Prostate case from CERR. Two OARs (bladder and rectum) are considered.
Cancers 15 04868 g013
Figure 14. Dose-volume histogram comparing dose obtained by PSO algorithm (solid line) and optimal fluence map obtained by FMO (dashed line) for a prescribed dose of 76 Gy to PTV, and 65 Gy to the rectum and bladder (purple and black horizontal dashed-point line, respectively) with BAC 1 in CERR instance.
Figure 14. Dose-volume histogram comparing dose obtained by PSO algorithm (solid line) and optimal fluence map obtained by FMO (dashed line) for a prescribed dose of 76 Gy to PTV, and 65 Gy to the rectum and bladder (purple and black horizontal dashed-point line, respectively) with BAC 1 in CERR instance.
Cancers 15 04868 g014
Figure 15. Dose-volume histogram comparing dose obtained by PSO algorithm (solid line) and optimal fluence map obtained by FMO (dashed line) for a prescribed dose of 76 Gy to PTV, and 65 Gy to the rectum and bladder (purple and black horizontal dashed-point line, respectively) with BAC 1 in TRT001 instance.
Figure 15. Dose-volume histogram comparing dose obtained by PSO algorithm (solid line) and optimal fluence map obtained by FMO (dashed line) for a prescribed dose of 76 Gy to PTV, and 65 Gy to the rectum and bladder (purple and black horizontal dashed-point line, respectively) with BAC 1 in TRT001 instance.
Cancers 15 04868 g015
Table 1. Equidistant BACs and their corresponding number of beamlets for the CERR and TRT01 cases.
Table 1. Equidistant BACs and their corresponding number of beamlets for the CERR and TRT01 cases.
BACBeam Angles# Beamleats# Beamleats
θ 1 θ 2 θ 3 θ 4 θ 5 CERRTRT
1070140210280336327
2575145215285336329
31080150220290333328
41585155225295333330
52090160230300329334
62595165235305328334
730100170240310333333
835105175245315336330
940110180250320337329
1045115185255325335329
1150120190260330331335
1255125195265335329335
1360130200270340329332
1465135205275345328328
Table 2. Value of T i , λ ̲ i and λ ¯ i for function z ( x ) .
Table 2. Value of T i , λ ̲ i and λ ¯ i for function z ( x ) .
Organ Y r λ ̲ r λ ¯ r
PTV76 Gy55
Rectum65 Gy01
Bladder65 Gy01
Table 3. Parameters of PSO used in Irace.
Table 3. Parameters of PSO used in Irace.
ParameterDescriptionRange
NpopNumber of populationNpop  100 , 600
c 1 a Local Learning factor on Apertures c 1 a 0 , 2
c 2 a Global Learning factor on Apertures c 2 a 0 , 2
w a Inertia weight on Apertures w a 0 , 2
c f a Constriction factor on Aperture c f a 0 , 2
c 1 i Local Learning factor on Intensities c 1 i 0 , 2
c 2 i Global Learning factor on Intensities c 2 i 0 , 2
w i Inertia weight on Intensities w i 0 , 2
c f i Constriction factor on Intensities c f i 0 , 2
Table 4. Best parameters’ values obtained by IRace.
Table 4. Best parameters’ values obtained by IRace.
ParameterValue
N p o p 418
c 1 a 1.8751
c 2 a 0.2134
w a 0.5774
c f a 1.6641
c 1 i 0.3158
c 2 i 1.7017
w i 0.5331
c f i 1.2389
Table 5. Results reported by the traditional two-step approach in the CERR dataset.
Table 5. Results reported by the traditional two-step approach in the CERR dataset.
BAC z ( x ) z ( r ( x ) ) # apBoT z ( r 2 ( x ) ) # apBoT z ( r 4 ( x ) ) # apBoT
142.9844.8414019649.298719261.5451204
243.4043.4014021548.768421261.7252224
343.7044.9814420348.838720272.8749208
443.5345.0614520651.778920866.4850212
543.2344.5514220047.408920267.4851204
643.0544.4714921249.239020866.0550208
742.8644.4815221248.059621462.9649212
843.0644.7014619748.008819661.7548196
943.6645.0314118650.628319070.7646192
1044.1445.7114420051.218920459.6447200
1143.8345.0213819051.978619068.8447200
1243.3144.3514421447.389421264.0355228
1342.8444.9815722949.059822682.4956232
1442.8544.2414221748.579221468.4551220
Average43.3244.7114420549.308920566.8050210
Table 6. Results reported by the traditional two-step approach in patient TRT001 in the CAS dataset.
Table 6. Results reported by the traditional two-step approach in patient TRT001 in the CAS dataset.
BAC z ( x ) z ( r ( x ) ) # apBoT z ( r 2 ( x ) ) # apBoT z ( r 4 ( x ) ) # apBoT
155.7856.9214622063.059222289.9752224
256.3558.3813821263.668921284.2249212
356.7258.3914121163.558521077.0149216
456.5557.9913221063.228822074.4851224
555.9857.9713821064.319021481.4449220
655.1956.3713920859.818720480.2447196
755.2156.5412919259.557819278.2444196
856.1457.2613118762.718418882.2146188
956.6258.1313621862.588821076.2452216
1056.9458.3014020763.598520692.4050212
1156.7458.2715223161.4710023484.8056232
1256.1757.9914421861.189621879.2054216
1355.3257.5413420459.758720476.0849204
1455.4656.8514221259.999521482.8841212
Average56.0857.6413821062.038821081.3949212
Table 7. Results reported by the PSO algorithm in the CERR dataset.
Table 7. Results reported by the PSO algorithm in the CERR dataset.
BAC z ( x ) # apBoT
156.3411.7063.47
257.4913.0764.13
357.3912.6361.31
457.3312.6761.60
556.2412.1365.38
654.7612.5960.72
754.3812.6062.46
854.5712.5766.49
957.5312.2961.28
1057.3611.6764.57
1156.1812.7568.62
1254.9612.3561.54
1355.8512.2560.35
1454.4112.6062.49
Average56.0612.4263.17
Table 8. Results reported by the PSO algorithm in the TRT001 dataset.
Table 8. Results reported by the PSO algorithm in the TRT001 dataset.
BAC z ( x ) # apBoT
171.3312.4062.44
272.3912.7062.13
373.7912.0062.96
473.8512.2063.07
573.8011.1058.99
673.7511.4063.91
772.5210.9058.94
872.6510.2060.30
974.2712.1066.04
1077.5811.4063.30
1174.6312.6062.51
1272.0012.1060.13
1369.7511.3060.32
1471.3110.5059.74
Average73.1811.6461.77
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Tello-Valenzuela, G.; Moyano, M.; Cabrera-Guerrero, G. Particle Swarm Optimisation Applied to the Direct Aperture Optimisation Problem in Radiation Therapy. Cancers 2023, 15, 4868. https://doi.org/10.3390/cancers15194868

AMA Style

Tello-Valenzuela G, Moyano M, Cabrera-Guerrero G. Particle Swarm Optimisation Applied to the Direct Aperture Optimisation Problem in Radiation Therapy. Cancers. 2023; 15(19):4868. https://doi.org/10.3390/cancers15194868

Chicago/Turabian Style

Tello-Valenzuela, Gonzalo, Mauricio Moyano, and Guillermo Cabrera-Guerrero. 2023. "Particle Swarm Optimisation Applied to the Direct Aperture Optimisation Problem in Radiation Therapy" Cancers 15, no. 19: 4868. https://doi.org/10.3390/cancers15194868

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop