-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
23 lines (18 loc) · 791 Bytes
/
Copy pathmain.cpp
File metadata and controls
23 lines (18 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include "include/rmc/manifold.hpp"
#include "src/core/kernel.cpp"
#include "src/logic/critic.cpp"
int main() {
// 1. تعريف إشارة قادمة
rmc::ManifoldPoint signal_input;
signal_input.signal_data.frequency = 10.5; // تردد قريب من تردد الرنين
// 2. التحقق من موثوقية الإشارة باستخدام "الناقد"
double threshold = 0.8; // الحد الأدنى للاستقرار
std::cout << "--- RMC System Processing ---" << std::endl;
if (rmc::is_reliable(signal_input, threshold)) {
std::cout << "Action: Signal accepted for cognitive processing." << std::endl;
} else {
std::cout << "Action: Signal discarded." << std::endl;
}
return 0;
}