You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear author, hello! After studying the code for a while, I have a few questions I'd like to ask you:
Earlier, I mentioned that I wanted to create a platoon of vehicles. I have three ideas: The first idea is for vehicles to form a platoon after passing through a merge point. The second idea is for vehicles on the main road and the vehicles on the ramp to form separate platoons before merging. For example, if there are 10 vehicles on the main road, they could form platoons of 4 and 6 vehicles respectively. The third idea is to add a detection area outside the control zone, where vehicles in this area would form a group and then merge into a platoon after passing through the merge point. These are my ideas, but I'm not sure how to modify the code. Do you have any suggestions? It would be great if you could provide detailed modification advice.
In line 97 of the main file, the generated positions of the vehicles on the main road may have negative values. Is this reasonable?
3.The target vehicle sequence has been generated in the 4th line of the objective_func file, but in the 10th line of code, the check_feasibilitycheck_feasibility function in the sequence file is entered, and the 54th line of code generates the vehicle sequence again. This is the same as the one generated before. Why is this extra step needed? And in the objective_func file, lines 6 and 7 of the code have reset the vehicle, and lines 55 and 56 have been reset again. What does this mean?
Thank you for taking the time out of your busy schedule to read my message. I wish you smooth work and happiness every day!
The text was updated successfully, but these errors were encountered:
Dear author, hello! After studying the code for a while, I have a few questions I'd like to ask you:
Earlier, I mentioned that I wanted to create a platoon of vehicles. I have three ideas: The first idea is for vehicles to form a platoon after passing through a merge point. The second idea is for vehicles on the main road and the vehicles on the ramp to form separate platoons before merging. For example, if there are 10 vehicles on the main road, they could form platoons of 4 and 6 vehicles respectively. The third idea is to add a detection area outside the control zone, where vehicles in this area would form a group and then merge into a platoon after passing through the merge point. These are my ideas, but I'm not sure how to modify the code. Do you have any suggestions? It would be great if you could provide detailed modification advice.
![image](https://private-user-images.githubusercontent.com/128301632/325836413-ec04c0bc-fe1f-4b2e-8307-c5673a352faf.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxODg2MDcsIm5iZiI6MTczOTE4ODMwNywicGF0aCI6Ii8xMjgzMDE2MzIvMzI1ODM2NDEzLWVjMDRjMGJjLWZlMWYtNGIyZS04MzA3LWM1NjczYTM1MmZhZi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxMFQxMTUxNDdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT00MjY5Y2U1ZmFhOTA0YmVhYjJjMmVkMzVmYWRhNGY4ZWZjMzU1MWUwMTAyZDc0ZDI3YjkxOWY0ZWNjODNmNjUyJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.HCqiQxuRgaLK3IRD8KZoXuM6k5G-FhpkJltgQmFgu_k)
![image](https://private-user-images.githubusercontent.com/128301632/325836501-d4b63f64-253e-4bcc-af2e-7360a8156fb6.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxODg2MDcsIm5iZiI6MTczOTE4ODMwNywicGF0aCI6Ii8xMjgzMDE2MzIvMzI1ODM2NTAxLWQ0YjYzZjY0LTI1M2UtNGJjYy1hZjJlLTczNjBhODE1NmZiNi5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjUwMjEwJTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI1MDIxMFQxMTUxNDdaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0yYjdiMmEzNzYyMDRlMTE5YmVhNjJhNjRiMzBiZDZjOGRkMDhjMzFlNjc1YzFmM2Y5ZjI1OTUxOTlmZDZmNzE5JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.y_ldkMV7e58h9J7uctXyRIHTV_Pop8jhXgrK4W2VrXQ)
In line 97 of the main file, the generated positions of the vehicles on the main road may have negative values. Is this reasonable?
3.The target vehicle sequence has been generated in the 4th line of the objective_func file, but in the 10th line of code, the check_feasibilitycheck_feasibility function in the sequence file is entered, and the 54th line of code generates the vehicle sequence again. This is the same as the one generated before. Why is this extra step needed? And in the objective_func file, lines 6 and 7 of the code have reset the vehicle, and lines 55 and 56 have been reset again. What does this mean?
Thank you for taking the time out of your busy schedule to read my message. I wish you smooth work and happiness every day!
The text was updated successfully, but these errors were encountered: